pythonPackages.click-completion: init at 0.4.1
This commit is contained in:
parent
af7adc206d
commit
ff2dddac7d
23
pkgs/development/python-modules/click-completion/default.nix
Normal file
23
pkgs/development/python-modules/click-completion/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 {};
|
||||
|
Loading…
x
Reference in New Issue
Block a user