depot/third_party/nixpkgs/pkgs/development/python-modules/decli/default.nix

37 lines
839 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "decli";
version = "0.6.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "woile";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-FZYKNKkQExx/YBn5y/W0+0aMlenuwEctYTL7LAXMZGE=";
};
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "decli" ];
meta = with lib; {
description = "Minimal, easy to use, declarative command line interface tool";
homepage = "https://github.com/Woile/decli";
changelog = "https://github.com/woile/decli/blob/v${version}/CHANGELOG.md";
license = licenses.mit;
maintainers = with maintainers; [ lovesegfault ];
};
}