pythonPackages.click-plugins: init at 1.0.3
This commit is contained in:
parent
df96c26e75
commit
d25edeb3ee
29
pkgs/development/python-modules/click-plugins/default.nix
Normal file
29
pkgs/development/python-modules/click-plugins/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi,
|
||||||
|
click, pytest
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "click-plugins";
|
||||||
|
version = "1.0.3";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1ifphgaw5mmcdnqd0qfnmrbm62q3k6p573aff4cxgpyjxmz5xk3s";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
click
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "An extension module for click to enable registering CLI commands";
|
||||||
|
homepage = https://github.com/click-contrib/click-plugins;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ knedlsepp ];
|
||||||
|
};
|
||||||
|
}
|
@ -3042,6 +3042,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
click-plugins = callPackage ../development/python-modules/click-plugins {};
|
||||||
|
|
||||||
click-threading = buildPythonPackage rec {
|
click-threading = buildPythonPackage rec {
|
||||||
version = "0.4.2";
|
version = "0.4.2";
|
||||||
name = "click-threading-${version}";
|
name = "click-threading-${version}";
|
||||||
|
Loading…
Reference in New Issue
Block a user