Merge pull request #49827 from Twey/click-repl
pythonPackages.click-repl: init at 0.1.6
This commit is contained in:
commit
d5c5c5c4d1
20
pkgs/development/python-modules/click-repl/default.nix
Normal file
20
pkgs/development/python-modules/click-repl/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -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 { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user