Merge pull request #49827 from Twey/click-repl

pythonPackages.click-repl: init at 0.1.6
This commit is contained in:
Silvan Mosberger 2018-11-10 15:03:48 +01:00 committed by GitHub
commit d5c5c5c4d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

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