1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "docopt-ng";
8 version = "0.7.2";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "sha256-hs7qAy8M+lnmB3brDPOKxzZTWBAihyMg9H3IdGeNckQ=";
13 };
14
15 pythonImportsCheck = [ "docopt" ];
16 doCheck = false; # no tests in the package
17
18 meta = with lib; {
19 description = "More-magic command line arguments parser. Now with more maintenance!";
20 homepage = "https://github.com/bazaar-projects/docopt-ng";
21 license = licenses.mit;
22 maintainers = with maintainers; [ fgaz ];
23 };
24}