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

python310Packages.pip-tools: 6.8.0 -> 6.11.0

authored by

Fabian Affolter and committed by
GitHub
89a353cc 65aa90eb

+3 -2
+3 -2
pkgs/development/python-modules/pip-tools/default.nix
··· 16 17 buildPythonPackage rec { 18 pname = "pip-tools"; 19 - version = "6.8.0"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; 23 24 src = fetchPypi { 25 inherit pname version; 26 - hash = "sha256-Oeiu5GVEbgInjYDb69QyXR3YYzJI9DITxzol9Y59ilU="; 27 }; 28 29 patches = [ ./fix-setup-py-bad-syntax-detection.patch ]; ··· 66 meta = with lib; { 67 description = "Keeps your pinned dependencies fresh"; 68 homepage = "https://github.com/jazzband/pip-tools/"; 69 license = licenses.bsd3; 70 maintainers = with maintainers; [ zimbatm ]; 71 };
··· 16 17 buildPythonPackage rec { 18 pname = "pip-tools"; 19 + version = "6.11.0"; 20 format = "setuptools"; 21 22 disabled = pythonOlder "3.7"; 23 24 src = fetchPypi { 25 inherit pname version; 26 + hash = "sha256-kMXcFQ44VuRGO4HMyZMHzPlVTl24OT6yc3BcsLj3HGA="; 27 }; 28 29 patches = [ ./fix-setup-py-bad-syntax-detection.patch ]; ··· 66 meta = with lib; { 67 description = "Keeps your pinned dependencies fresh"; 68 homepage = "https://github.com/jazzband/pip-tools/"; 69 + changelog = "https://github.com/jazzband/pip-tools/releases/tag/${version}"; 70 license = licenses.bsd3; 71 maintainers = with maintainers; [ zimbatm ]; 72 };