python3Packages.decli: init @ 0.5.2
This commit is contained in:
parent
63980ec2c9
commit
4fc9725422
2 changed files with 25 additions and 0 deletions
23
pkgs/development/python-modules/decli/default.nix
Normal file
23
pkgs/development/python-modules/decli/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ buildPythonPackage
|
||||
, lib
|
||||
, fetchPypi
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "decli";
|
||||
version = "0.5.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-8s3lUDSnXIGcYwx2VahExhLyWYxCwhKZFgRl32rUY60=";
|
||||
};
|
||||
|
||||
pythonImportsCheck = [ "decli" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Minimal, easy to use, declarative command line interface tool";
|
||||
homepage = "https://github.com/Woile/decli";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ lovesegfault ];
|
||||
};
|
||||
}
|
|
@ -2038,6 +2038,8 @@ in {
|
|||
|
||||
debugpy = callPackage ../development/python-modules/debugpy { };
|
||||
|
||||
decli = callPackage ../development/python-modules/decli { };
|
||||
|
||||
decorator = callPackage ../development/python-modules/decorator { };
|
||||
|
||||
decopatch = callPackage ../development/python-modules/decopatch { };
|
||||
|
|
Loading…
Reference in a new issue