My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/decli/default.nix

23 lines
509 B

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