ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / commandparse / default.nix
blob68da870f4e2dfad7399b05eac8bf8648bd118a32
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "commandparse";
8   version = "1.1.1";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "06mcxc0vs5qdcywalgyx5zm18z4xcsrg5g0wsqqv5qawkrvmvl53";
13   };
15   # tests only distributed upstream source, not PyPi
16   doCheck = false;
17   pythonImportsCheck = [ "commandparse" ];
19   meta = with lib; {
20     description = "Python module to parse command based CLI application";
21     homepage = "https://github.com/flgy/commandparse";
22     license = with licenses; [ mit ];
23     maintainers = [ maintainers.fab ];
24   };