8 buildPythonPackage rec {
9 pname = "commandparse";
11 format = "setuptools";
13 disabled = pythonOlder "3.7";
16 inherit pname version;
17 hash = "sha256-S9e90BtS6qMjFtYUmgC0w4IKQP8q1iR2tGqq5l2+n6o=";
20 # tests only distributed upstream source, not PyPi
23 pythonImportsCheck = [ "commandparse" ];
26 description = "Python module to parse command based CLI application";
27 homepage = "https://github.com/flgy/commandparse";
28 license = with licenses; [ mit ];
29 maintainers = [ maintainers.fab ];