python310Packages.pykdtree 0 -> 1 attrpath: python310Packages.pykdtree 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] Going to be running update for following packages: - python3.10-pykdtree-1.3.7.post0 Press Enter key to continue... Running update for: - python3.10-pykdtree-1.3.7.post0: UPDATING ... - python3.10-pykdtree-1.3.7.post0: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/pykdtree/default.nix b/pkgs/development/python-modules/pykdtree/default.nix index 0ba615277e36..eb6eafb40ff4 100644 --- a/pkgs/development/python-modules/pykdtree/default.nix +++ b/pkgs/development/python-modules/pykdtree/default.nix @@ -2,12 +2,12 @@ buildPythonPackage rec { pname = "pykdtree"; - version = "1.3.7.post0"; + version = "1.3.10"; format = "setuptools"; src = fetchPypi { inherit pname version; - hash = "sha256-7KHWHTPbYh74An62ka6I25xl0ZarpLLMkMGQy5C7UI4="; + hash = "sha256-QefF1mnK3CGIrMS7tLC03K9JLYRRLx5lF6erLRIskR0="; }; buildInputs = [ openmp ]; No auto update branch exists Old version 1.3.7.post0" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi # build-system , cython_3 , numpy , setuptools # native dependencies , openmp # tests , pytestCheckHook }: buildPythonPackage rec { pname = "pykdtree"; version = "1.3.10"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-QefF1mnK3CGIrMS7tLC03K9JLYRRLx5lF6erLRIskR0="; }; nativeBuildInputs = [ cython_3 numpy setuptools ]; buildInputs = [ openmp ]; propagatedBuildInputs = [ numpy ]; preCheck = '' # make sure we don't import pykdtree from the source tree mv pykdtree tests ''; nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "kd-tree implementation for fast nearest neighbour search in Python"; homepage = "https://github.com/storpipfugl/pykdtree"; license = licenses.lgpl3; maintainers = with maintainers; [ psyanticy ]; }; }