python311Packages.rpy2 3.5.12 -> 3.5.14 https://repology.org/project/python:rpy2/versions attrpath: python311Packages.rpy2 Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [npmDepsVersion] [npmDepsVersion] No npmDepsHash [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/vcs4bbrkacfl2xsij8ih5yd386bv6ya4-packages.json.drv building '/nix/store/vcs4bbrkacfl2xsij8ih5yd386bv6ya4-packages.json.drv'... Going to be running update for following packages: - python3.11-rpy2-3.5.12 Press Enter key to continue... Running update for: - python3.11-rpy2-3.5.12: UPDATING ... - python3.11-rpy2-3.5.12: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/rpy2/default.nix b/pkgs/development/python-modules/rpy2/default.nix index 58e38eb56294..4d0e19f513a8 100644 --- a/pkgs/development/python-modules/rpy2/default.nix +++ b/pkgs/development/python-modules/rpy2/default.nix @@ -24,13 +24,13 @@ }: buildPythonPackage rec { - version = "3.5.12"; + version = "3.5.14"; pname = "rpy2"; disabled = isPyPy; src = fetchPypi { inherit version pname; - hash = "sha256-7q33lP0qpUj4hWjGodJufDgQzUp2Soeyw7MdMZQtbUU="; + hash = "sha256-X0auMdNuEXvjZq1K4CSTwBWsa6WevjtM1yAAdTMvxIE="; }; patches = [ No auto update branch exists Old version 3.5.12" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , fetchPypi , isPyPy , R , rWrapper , rPackages , pcre , xz , bzip2 , zlib , icu , ipython , jinja2 , pytz , pandas , numpy , cffi , tzlocal , simplegeneric , pytestCheckHook , extraRPackages ? [] }: buildPythonPackage rec { version = "3.5.14"; pname = "rpy2"; disabled = isPyPy; src = fetchPypi { inherit version pname; hash = "sha256-X0auMdNuEXvjZq1K4CSTwBWsa6WevjtM1yAAdTMvxIE="; }; patches = [ # R_LIBS_SITE is used by the nix r package to point to the installed R libraries. # This patch sets R_LIBS_SITE when rpy2 is imported. ./rpy2-3.x-r-libs-site.patch ]; postPatch = '' substituteInPlace 'rpy2/rinterface_lib/embedded.py' --replace '@NIX_R_LIBS_SITE@' "$R_LIBS_SITE" substituteInPlace 'requirements.txt' --replace 'pytest' "" ''; buildInputs = [ pcre xz bzip2 zlib icu ] ++ (with rPackages; [ # packages expected by the test framework ggplot2 dplyr RSQLite broom DBI dbplyr hexbin lazyeval lme4 tidyr ]) ++ extraRPackages ++ rWrapper.recommendedPackages; nativeBuildInputs = [ R # needed at setup time to detect R_HOME (alternatively set R_HOME explicitly) ]; propagatedBuildInputs = [ ipython jinja2 pytz pandas numpy cffi tzlocal simplegeneric ]; doCheck = !stdenv.isDarwin; nativeCheckInputs = [ pytestCheckHook ]; meta = { homepage = "https://rpy2.github.io/"; description = "Python interface to R"; license = lib.licenses.gpl2Plus; platforms = lib.platforms.unix; maintainers = with lib.maintainers; [ joelmo ]; }; }