python311Packages.pykdtree 0 -> 1 attrpath: python311Packages.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.11-pykdtree-1.3.11 Press Enter key to continue... Running update for: - python3.11-pykdtree-1.3.11: UPDATING ... - python3.11-pykdtree-1.3.11: 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 b720f5b838b3..84372802ecaf 100644 --- a/pkgs/development/python-modules/pykdtree/default.nix +++ b/pkgs/development/python-modules/pykdtree/default.nix @@ -16,12 +16,12 @@ buildPythonPackage rec { pname = "pykdtree"; - version = "1.3.11"; + version = "1.3.12"; pyproject = true; src = fetchPypi { inherit pname version; - hash = "sha256-bBI8e65SE68iPFKai0FhwH64VKb+QDizaVK62iEx68s="; + hash = "sha256-zCCypnxkBWSFoxTSwrbbo1SvfuHI+42uG+byk2o3Q0E="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.3.11" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchPypi # build-system , cython , numpy , setuptools # native dependencies , openmp # tests , pytestCheckHook }: buildPythonPackage rec { pname = "pykdtree"; version = "1.3.12"; pyproject = true; src = fetchPypi { inherit pname version; hash = "sha256-zCCypnxkBWSFoxTSwrbbo1SvfuHI+42uG+byk2o3Q0E="; }; nativeBuildInputs = [ cython numpy setuptools ]; buildInputs = [ openmp ]; propagatedBuildInputs = [ numpy ]; preCheck = '' # make sure we don't import pykdtree from the source tree mv pykdtree/test_tree.py . rm -rf pykdtree ''; 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 ]; }; }