python310Packages.cytoolz 0 -> 1 attrpath: python310Packages.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/4v6i0nlwiib44kq798mrl4g57j6ak8i3-packages.json.drv building '/nix/store/4v6i0nlwiib44kq798mrl4g57j6ak8i3-packages.json.drv'... Going to be running update for following packages: - python3.10-cytoolz-0.12.1 Press Enter key to continue... Running update for: - python3.10-cytoolz-0.12.1: UPDATING ... - python3.10-cytoolz-0.12.1: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/cytoolz/default.nix b/pkgs/development/python-modules/cytoolz/default.nix index 768950237acb..ce24c505b83b 100644 --- a/pkgs/development/python-modules/cytoolz/default.nix +++ b/pkgs/development/python-modules/cytoolz/default.nix @@ -11,12 +11,12 @@ buildPythonPackage rec { pname = "cytoolz"; - version = "0.12.1"; + version = "0.12.2"; disabled = isPy27 || isPyPy; src = fetchPypi { inherit pname version; - hash = "sha256-/DOQk5dIHJDePOyDG/uI2X4iDckZOdmWkgIC8YS0ZI4="; + hash = "sha256-MdSwRV1y2RRkX4A9kX2vTzFNEVxw3gV404IN64sQH2Y="; }; nativeBuildInputs = [ cython ]; No auto update branch exists Old version 0.12.1" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi , isPyPy , pytestCheckHook , cython , toolz , python , isPy27 }: buildPythonPackage rec { pname = "cytoolz"; version = "0.12.2"; disabled = isPy27 || isPyPy; src = fetchPypi { inherit pname version; hash = "sha256-MdSwRV1y2RRkX4A9kX2vTzFNEVxw3gV404IN64sQH2Y="; }; 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 = { homepage = "https://github.com/pytoolz/cytoolz/"; description = "Cython implementation of Toolz: High performance functional utilities"; license = "licenses.bsd3"; maintainers = with lib.maintainers; [ fridh ]; }; }