depot/third_party/nixpkgs/pkgs/development/python-modules/decli/default.nix
Default email 83405b6dd2 Project import generated by Copybara.
GitOrigin-RevId: ac718d02867a84b42522a0ece52d841188208f2c
2023-03-15 17:39:30 +01:00

23 lines
507 B
Nix

{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "decli";
version = "0.5.2";
src = fetchPypi {
inherit pname version;
hash = "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 ];
};
}