lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.click-plugins: 1.1.1 -> 1.1.1.2

This commit was automatically generated using update-python-libraries.

+9 -5
+9 -5
pkgs/development/python-modules/click-plugins/default.nix
··· 4 4 fetchPypi, 5 5 click, 6 6 pytest, 7 + setuptools, 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "click-plugins"; 11 - version = "1.1.1"; 12 - format = "setuptools"; 12 + version = "1.1.1.2"; 13 + pyproject = true; 13 14 14 15 src = fetchPypi { 15 - inherit pname version; 16 - sha256 = "46ab999744a9d831159c3411bb0c79346d94a444df9a3a3742e9ed63645f264b"; 16 + pname = "click_plugins"; 17 + inherit version; 18 + sha256 = "sha256-1685hKmdJDwTGqGoKDMedjD0qIqXQf0FySeyBLz5ImE="; 17 19 }; 18 20 19 - propagatedBuildInputs = [ click ]; 21 + build-system = [ setuptools ]; 22 + 23 + dependencies = [ click ]; 20 24 21 25 nativeCheckInputs = [ pytest ]; 22 26