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