python311Packages.cytoolz 0 -> 1 attrpath: python311Packages.cytoolz 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/pqwxxi2qil1qyxbvpxiyasz1mqdyflgx-packages.json.drv building '/nix/store/pqwxxi2qil1qyxbvpxiyasz1mqdyflgx-packages.json.drv'... Going to be running update for following packages: - python3.11-cytoolz-0.12.2 Press Enter key to continue... Running update for: - python3.11-cytoolz-0.12.2: UPDATING ... - python3.11-cytoolz-0.12.2: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/cytoolz/default.nix b/pkgs/development/python-modules/cytoolz/default.nix index e46d0816577d..64ac6ad9dfd0 100644 --- a/pkgs/development/python-modules/cytoolz/default.nix +++ b/pkgs/development/python-modules/cytoolz/default.nix @@ -11,13 +11,13 @@ buildPythonPackage rec { pname = "cytoolz"; - version = "0.12.2"; + version = "0.12.3"; format = "setuptools"; disabled = isPy27 || isPyPy; src = fetchPypi { inherit pname version; - hash = "sha256-MdSwRV1y2RRkX4A9kX2vTzFNEVxw3gV404IN64sQH2Y="; + hash = "sha256-RQPcWfTO1TpUZDJyxh3DBdHbv719a98paUjenzTDooI="; }; nativeBuildInputs = [ cython ]; No auto update branch exists Old version 0.12.2" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , isPyPy , pytestCheckHook , cython , toolz , python , isPy27 }: buildPythonPackage rec { pname = "cytoolz"; version = "0.12.3"; format = "setuptools"; disabled = isPy27 || isPyPy; src = fetchPypi { inherit pname version; hash = "sha256-RQPcWfTO1TpUZDJyxh3DBdHbv719a98paUjenzTDooI="; }; nativeBuildInputs = [ cython ]; propagatedBuildInputs = [ toolz ]; # tests are located in cytoolz/tests, however we can't import cytoolz # from $PWD, as it will break relative imports preCheck = '' cd cytoolz export PYTHONPATH=$out/${python.sitePackages}:$PYTHONPATH ''; nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { homepage = "https://github.com/pytoolz/cytoolz/"; description = "Cython implementation of Toolz: High performance functional utilities"; license = licenses.bsd3; maintainers = with lib.maintainers; [ fridh ]; }; }