python311Packages.ndindex 0 -> 1 attrpath: python311Packages.ndindex 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/xfw3cgp3vwv4b7w42n4pzq42cjrg6x2d-packages.json.drv building '/nix/store/xfw3cgp3vwv4b7w42n4pzq42cjrg6x2d-packages.json.drv'... Going to be running update for following packages: - python3.11-ndindex-1.7 Press Enter key to continue... Running update for: - python3.11-ndindex-1.7: UPDATING ... - python3.11-ndindex-1.7: DONE. Packages updated! Diff after rewrites: diff --git a/pkgs/development/python-modules/ndindex/default.nix b/pkgs/development/python-modules/ndindex/default.nix index de40dc3d71cf..5ee682994575 100644 --- a/pkgs/development/python-modules/ndindex/default.nix +++ b/pkgs/development/python-modules/ndindex/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "ndindex"; - version = "1.7"; + version = "1.8"; format = "setuptools"; src = fetchFromGitHub { owner = "Quansight-Labs"; repo = "ndindex"; rev = "refs/tags/${version}"; - hash = "sha256-JP0cEuxXfPTWc1EIUtMsy5Hx6eIo9vDzD0IUXm1lFME="; + hash = "sha256-F52ly3NkrZ0H9XoomMqmWfLl+8X0z26Yx67DB8DUqyU="; }; nativeBuildInputs = [ No auto update branch exists Old version 1.7" not present in staging derivation file with contents: { lib , buildPythonPackage , fetchFromGitHub # build-system , cython_3 # optional , numpy # tests , hypothesis , pytest-cov , pytestCheckHook }: buildPythonPackage rec { pname = "ndindex"; version = "1.8"; format = "setuptools"; src = fetchFromGitHub { owner = "Quansight-Labs"; repo = "ndindex"; rev = "refs/tags/${version}"; hash = "sha256-F52ly3NkrZ0H9XoomMqmWfLl+8X0z26Yx67DB8DUqyU="; }; nativeBuildInputs = [ cython_3 ]; postPatch = '' substituteInPlace pytest.ini \ --replace "--cov=ndindex/ --cov-report=term-missing --flakes" "" ''; passthru.optional-dependencies.arrays = [ numpy ]; pythonImportsCheck = [ "ndindex" ]; nativeCheckInputs = [ hypothesis pytest-cov # uses cov markers pytestCheckHook ] ++ passthru.optional-dependencies.arrays; pytestFlagsArray = [ # pytest.PytestRemovedIn8Warning: Passing None has been deprecated. "--deselect=ndindex/tests/test_ndindex.py::test_ndindex_invalid" ]; meta = with lib; { description = ""; homepage = "https://github.com/Quansight-Labs/ndindex"; changelog = "https://github.com/Quansight-Labs/ndindex/releases/tag/${version}"; license = licenses.mit; maintainers = with maintainers; [ ]; }; }