Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / commandparse / default.nix
blobe146649604f02f6dc4aa84005adaedf1214b5786
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 }:
7 buildPythonPackage rec {
8   pname = "commandparse";
9   version = "1.1.2";
10   format = "setuptools";
12   disabled = pythonOlder "3.7";
14   src = fetchPypi {
15     inherit pname version;
16     sha256 = "sha256-S9e90BtS6qMjFtYUmgC0w4IKQP8q1iR2tGqq5l2+n6o=";
17   };
19   # tests only distributed upstream source, not PyPi
20   doCheck = false;
22   pythonImportsCheck = [
23     "commandparse"
24   ];
26   meta = with lib; {
27     description = "Python module to parse command based CLI application";
28     homepage = "https://github.com/flgy/commandparse";
29     license = with licenses; [ mit ];
30     maintainers = [ maintainers.fab ];
31   };