python311Packages.rpy2 0 -> 1 attrpath: python311Packages.rpy2 Checking auto update branch... [version] [version] generic version rewriter does not support multiple hashes [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/rkki4a11lrydn8cj7aa286s7zjkw9gzp-packages.json.drv building '/nix/store/rkki4a11lrydn8cj7aa286s7zjkw9gzp-packages.json.drv'... Going to be running update for following packages: - python3.11-rpy2-3.5.15 Press Enter key to continue... Running update for: - python3.11-rpy2-3.5.15: UPDATING ... - python3.11-rpy2-3.5.15: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/rpy2/default.nix b/pkgs/development/python-modules/rpy2/default.nix index c10b23414b42..b32303484725 100644 --- a/pkgs/development/python-modules/rpy2/default.nix +++ b/pkgs/development/python-modules/rpy2/default.nix @@ -25,14 +25,14 @@ }: buildPythonPackage rec { - version = "3.5.15"; + version = "3.5.16"; format = "setuptools"; pname = "rpy2"; disabled = isPyPy; src = fetchPypi { inherit version pname; - hash = "sha256-RE+uSoTcfyM7cOqrCqgTmO4BR8ThrjjdRSTXedbyWys="; + hash = "sha256-g34vdFg2WKXEwzl2GnP5Q08z75ztPjDGTadWIWXCgBs="; }; patches = [ No auto update branch exists Old version 3.5.15" not present in staging derivation file with contents: { stdenv , lib , buildPythonPackage , fetchPypi , fetchpatch , isPyPy , R , rWrapper , rPackages , pcre , xz , bzip2 , zlib , icu , ipython , jinja2 , pytz , pandas , numpy , cffi , tzlocal , simplegeneric , pytestCheckHook , extraRPackages ? [] }: buildPythonPackage rec { version = "3.5.16"; format = "setuptools"; pname = "rpy2"; disabled = isPyPy; src = fetchPypi { inherit version pname; hash = "sha256-g34vdFg2WKXEwzl2GnP5Q08z75ztPjDGTadWIWXCgBs="; }; 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 # https://github.com/rpy2/rpy2/pull/1094 (fetchpatch { url = "https://github.com/rpy2/rpy2/commit/026d069a008163a62d12567bcb938410d0f9bf7a.diff"; hash = "sha256-x778upSY3zab5EiRyOcsbDpPj7vN/7XzefEs+wvkNg0="; }) ]; 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 ]; }; }