mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
pythonPackages.click-repl: init at 0.1.6
This commit is contained in:
parent
19091a5178
commit
a7c122bd65
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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user