694d4ae51c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-click-completion/versions (cherry picked from commit ae59d16ac6b86a14abdf3655a7e2c9369af56f52)
24 lines
634 B
Nix
24 lines
634 B
Nix
{ stdenv, buildPythonPackage, fetchPypi, isPy3k,
|
|
click, jinja2, shellingham, six
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "click-completion";
|
|
version = "0.5.1";
|
|
disabled = (!isPy3k);
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1ysn6kzv3fgakn0y06i3cxynd8iaybarrygabk9a0pp2spn2w1vq";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|