10 buildPythonPackage rec {
15 disabled = pythonOlder "3.7";
17 src = fetchFromGitHub {
20 rev = "refs/tags/v${version}";
21 hash = "sha256-FZYKNKkQExx/YBn5y/W0+0aMlenuwEctYTL7LAXMZGE=";
24 nativeBuildInputs = [ setuptools ];
26 nativeCheckInputs = [ pytestCheckHook ];
28 pythonImportsCheck = [ "decli" ];
31 description = "Minimal, easy to use, declarative command line interface tool";
32 homepage = "https://github.com/Woile/decli";
33 changelog = "https://github.com/woile/decli/blob/v${version}/CHANGELOG.md";
34 license = licenses.mit;
35 maintainers = with maintainers; [ lovesegfault ];