Merge pull request #153382 from lovesegfault/decli-0.5.2

python3Packages.decli: init @ 0.5.2
This commit is contained in:
Bernardo Meurer 2022-01-03 20:07:47 +00:00 committed by GitHub
commit 5ce1c664f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 { }; debugpy = callPackage ../development/python-modules/debugpy { };
decli = callPackage ../development/python-modules/decli { };
decorator = callPackage ../development/python-modules/decorator { }; decorator = callPackage ../development/python-modules/decorator { };
decopatch = callPackage ../development/python-modules/decopatch { }; decopatch = callPackage ../development/python-modules/decopatch { };