3
0
Fork 0
forked from mirrors/nixpkgs

pythonPackages.click-repl: init at 0.1.6

This commit is contained in:
James Kay 2018-11-06 11:56:07 +00:00
parent 19091a5178
commit a7c122bd65
No known key found for this signature in database
GPG key ID: 76BE7F17BF11AD15
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, click, prompt_toolkit }:
buildPythonPackage rec {
pname = "click-repl";
version = "0.1.6";
src = fetchPypi {
inherit pname version;
sha256 = "1mcmz95595nrp4r58spy1ac993db26hk4q97isghbmn4md99vwmr";
};
propagatedBuildInputs = [ click prompt_toolkit ];
meta = with stdenv.lib; {
homepage = https://github.com/click-contrib/click-repl;
description = "Subcommand REPL for click apps";
license = licenses.mit;
maintainers = with maintainers; [ twey ];
};
}

View file

@ -1140,6 +1140,8 @@ in {
click-plugins = callPackage ../development/python-modules/click-plugins {};
click-repl = callPackage ../development/python-modules/click-repl { };
click-threading = callPackage ../development/python-modules/click-threading {};
cligj = callPackage ../development/python-modules/cligj { };