nixpkgs/pkgs/development/python-modules/decli/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

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