mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
24 lines
648 B
Nix
24 lines
648 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, isPy3k,
|
|
click, jinja2, shellingham, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "click-completion";
|
|
version = "0.5.2";
|
|
disabled = (!isPy3k);
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "5bf816b81367e638a190b6e91b50779007d14301b3f9f3145d68e3cade7bce86";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|