Revert "python3Packages.pip-tools: 7.4.1 -> 7.5.0"

This reverts commit 8ae23cfe65db122a3360ee10995d5caa38b4b421.

Breaks home-assistant-chip-wheels.

Changed files
+5 -16
pkgs
development
python-modules
pip-tools
+5 -16
pkgs/development/python-modules/pip-tools/default.nix
···
buildPythonPackage,
build,
click,
-
fetchFromGitHub,
pep517,
pip,
pytest-xdist,
···
buildPythonPackage rec {
pname = "pip-tools";
-
version = "7.5.0";
pyproject = true;
disabled = pythonOlder "3.8";
-
src = fetchFromGitHub {
-
owner = "jazzband";
-
repo = "pip-tools";
-
tag = "v${version}";
-
hash = "sha256-F2SuuY2tN0HEbkWMBdGVuWBwu2onOdMDcWLal8jke2s=";
};
patches = [ ./fix-setup-py-bad-syntax-detection.patch ];
···
"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" ];
···
buildPythonPackage,
build,
click,
+
fetchPypi,
pep517,
pip,
pytest-xdist,
···
buildPythonPackage rec {
pname = "pip-tools";
+
version = "7.4.1";
pyproject = true;
disabled = pythonOlder "3.8";
+
src = fetchPypi {
+
inherit pname version;
+
hash = "sha256-hkgm9Qc4ZEUOJNvuuFzjkgzfsJhIo9aev1N7Uh8UvMk=";
};
patches = [ ./fix-setup-py-bad-syntax-detection.patch ];
···
"test_no_candidates"
"test_no_candidates_pre"
"test_failure_of_legacy_resolver_prompts_for_backtracking"
];
pythonImportsCheck = [ "piptools" ];