python310Packages.pip-tools 0 -> 1 attrpath: python310Packages.pip-tools 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 [updateScript] [updateScript] Success [updateScript] this derivation will be built: /nix/store/n6i4b9vgrz4d9n6w16vfx83xkim8nji3-packages.json.drv building '/nix/store/n6i4b9vgrz4d9n6w16vfx83xkim8nji3-packages.json.drv'... Going to be running update for following packages: - python3.10-pip-tools-6.11.0 Press Enter key to continue... Running update for: - python3.10-pip-tools-6.11.0: UPDATING ... - python3.10-pip-tools-6.11.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/python-modules/pip-tools/default.nix b/pkgs/development/python-modules/pip-tools/default.nix index 7a595a85d8f..78e2952ceae 100644 --- a/pkgs/development/python-modules/pip-tools/default.nix +++ b/pkgs/development/python-modules/pip-tools/default.nix @@ -16,14 +16,14 @@ buildPythonPackage rec { pname = "pip-tools"; - version = "6.11.0"; + version = "6.12.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; - hash = "sha256-kMXcFQ44VuRGO4HMyZMHzPlVTl24OT6yc3BcsLj3HGA="; + hash = "sha256-iO+3spqSP/6sBxPm8j74UpzGF1Un1CuT9zdWzJQ4cpM="; }; patches = [ ./fix-setup-py-bad-syntax-detection.patch ]; No auto update branch exists Old version 6.11.0" not present in staging derivation file with contents: { lib , stdenv , buildPythonPackage , build , click , fetchPypi , pep517 , pip , pytest-xdist , pytestCheckHook , pythonOlder , setuptools , setuptools-scm , wheel }: buildPythonPackage rec { pname = "pip-tools"; version = "6.12.1"; format = "setuptools"; disabled = pythonOlder "3.7"; src = fetchPypi { inherit pname version; hash = "sha256-iO+3spqSP/6sBxPm8j74UpzGF1Un1CuT9zdWzJQ4cpM="; }; patches = [ ./fix-setup-py-bad-syntax-detection.patch ]; nativeBuildInputs = [ setuptools-scm ]; propagatedBuildInputs = [ build click pep517 pip setuptools wheel ]; checkInputs = [ pytest-xdist pytestCheckHook ]; preCheck = lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) '' # https://github.com/python/cpython/issues/74570#issuecomment-1093748531 export no_proxy='*'; ''; disabledTests = [ # Tests require network access "network" "test_direct_reference_with_extras" "test_local_duplicate_subdependency_combined" "test_bad_setup_file" ]; pythonImportsCheck = [ "piptools" ]; meta = with lib; { description = "Keeps your pinned dependencies fresh"; homepage = "https://github.com/jazzband/pip-tools/"; changelog = "https://github.com/jazzband/pip-tools/releases/tag/${version}"; license = licenses.bsd3; maintainers = with maintainers; [ zimbatm ]; }; }