pythonPackages.click-plugins: init at 1.0.3

This commit is contained in:
Josef Kemetmueller 2017-09-03 09:01:33 +00:00
parent df96c26e75
commit d25edeb3ee
2 changed files with 31 additions and 0 deletions

View 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 ];
};
}

View file

@ -3042,6 +3042,8 @@ in {
};
};
click-plugins = callPackage ../development/python-modules/click-plugins {};
click-threading = buildPythonPackage rec {
version = "0.4.2";
name = "click-threading-${version}";