Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pythonPackages.click-plugins: init at 1.0.3

+31
+29
pkgs/development/python-modules/click-plugins/default.nix
···
··· 1 + { stdenv, buildPythonPackage, fetchPypi, 2 + click, pytest 3 + }: 4 + 5 + buildPythonPackage rec { 6 + pname = "click-plugins"; 7 + version = "1.0.3"; 8 + name = "${pname}-${version}"; 9 + 10 + src = fetchPypi { 11 + inherit pname version; 12 + sha256 = "1ifphgaw5mmcdnqd0qfnmrbm62q3k6p573aff4cxgpyjxmz5xk3s"; 13 + }; 14 + 15 + propagatedBuildInputs = [ 16 + click 17 + ]; 18 + 19 + checkInputs = [ 20 + pytest 21 + ]; 22 + 23 + meta = with stdenv.lib; { 24 + description = "An extension module for click to enable registering CLI commands"; 25 + homepage = https://github.com/click-contrib/click-plugins; 26 + license = licenses.bsd3; 27 + maintainers = with maintainers; [ knedlsepp ]; 28 + }; 29 + }
+2
pkgs/top-level/python-packages.nix
··· 3042 }; 3043 }; 3044 3045 click-threading = buildPythonPackage rec { 3046 version = "0.4.2"; 3047 name = "click-threading-${version}";
··· 3042 }; 3043 }; 3044 3045 + click-plugins = callPackage ../development/python-modules/click-plugins {}; 3046 + 3047 click-threading = buildPythonPackage rec { 3048 version = "0.4.2"; 3049 name = "click-threading-${version}";