From 7f99ca4b3040478f7ce6d15b992a8d8dfc22f99a Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Tue, 5 Aug 2025 04:42:06 +0200 Subject: [PATCH] python3Packages.pip-tools: 7.4.1 -> 7.5.0 https://github.com/jazzband/pip-tools/releases/tag/7.5.0 This commit was automatically generated using update-python-libraries. --- .../python-modules/pip-tools/default.nix | 21 ++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/pip-tools/default.nix b/pkgs/development/python-modules/pip-tools/default.nix index a5a04a886480..a6d8c36cb48c 100644 --- a/pkgs/development/python-modules/pip-tools/default.nix +++ b/pkgs/development/python-modules/pip-tools/default.nix @@ -4,7 +4,7 @@ buildPythonPackage, build, click, - fetchPypi, + fetchFromGitHub, pep517, pip, pytest-xdist, @@ -19,14 +19,16 @@ buildPythonPackage rec { pname = "pip-tools"; - version = "7.4.1"; + version = "7.5.0"; pyproject = true; disabled = pythonOlder "3.8"; - src = fetchPypi { - inherit pname version; - hash = "sha256-hkgm9Qc4ZEUOJNvuuFzjkgzfsJhIo9aev1N7Uh8UvMk="; + src = fetchFromGitHub { + owner = "jazzband"; + repo = "pip-tools"; + tag = "v${version}"; + hash = "sha256-F2SuuY2tN0HEbkWMBdGVuWBwu2onOdMDcWLal8jke2s="; }; patches = [ ./fix-setup-py-bad-syntax-detection.patch ]; @@ -82,6 +84,15 @@ buildPythonPackage rec { "test_no_candidates" "test_no_candidates_pre" "test_failure_of_legacy_resolver_prompts_for_backtracking" + + # ValueError: I/O operation on closed file. + "test_indentation" + + # unexpected warnings due to legacy resolver deprecation + "test_show_warning_on_default_strip_extras_option" + + # generator fails to yield + "test_compile_build_targets_setuptools_no_wheel_dep" ]; pythonImportsCheck = [ "piptools" ];