Merge pull request #203890 from r-ryantm/auto-update/python310Packages.pip-tools

python310Packages.pip-tools: 6.8.0 -> 6.11.0
This commit is contained in:
Fabian Affolter 2022-12-01 19:35:23 +01:00 committed by GitHub
commit 89a353ccd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,14 +16,14 @@
buildPythonPackage rec {
pname = "pip-tools";
version = "6.8.0";
version = "6.11.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-Oeiu5GVEbgInjYDb69QyXR3YYzJI9DITxzol9Y59ilU=";
hash = "sha256-kMXcFQ44VuRGO4HMyZMHzPlVTl24OT6yc3BcsLj3HGA=";
};
patches = [ ./fix-setup-py-bad-syntax-detection.patch ];
@ -66,6 +66,7 @@ buildPythonPackage rec {
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 ];
};