python3Packages.decli: init @ 0.5.2

This commit is contained in:
Bernardo Meurer 2022-01-03 16:47:10 -03:00
parent 63980ec2c9
commit 4fc9725422
No known key found for this signature in database
GPG Key ID: F4C0D53B8D14C246
2 changed files with 25 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };