pythonPackages.click-completion: init at 0.4.1

This commit is contained in:
Maximilian Bode 2018-09-22 09:42:20 +02:00
parent af7adc206d
commit ff2dddac7d
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k,
click, jinja2, shellingham, six
}:
buildPythonPackage rec {
pname = "click-completion";
version = "0.4.1";
disabled = (!isPy3k);
src = fetchPypi {
inherit pname version;
sha256 = "1fjm22dyma26jrx4ki2z4dwbhcah4r848fz381x64sz5xxq3xdrk";
};
propagatedBuildInputs = [ click jinja2 shellingham six ];
meta = with stdenv.lib; {
description = "Add or enhance bash, fish, zsh and powershell completion in Click";
homepage = https://github.com/click-contrib/click-completion;
license = licenses.mit;
maintainers = with maintainers; [ mbode ];
};
}

View file

@ -1542,6 +1542,8 @@ in {
click = callPackage ../development/python-modules/click {};
click-completion = callPackage ../development/python-modules/click-completion {};
click-didyoumean = callPackage ../development/python-modules/click-didyoumean {};
click-log = callPackage ../development/python-modules/click-log {};