1{ lib
2, buildPythonPackage
3, fetchPypi
4}:
5
6buildPythonPackage rec {
7 pname = "docopt-ng";
8 version = "0.8.1";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "sha256-6mphooj8hk7uayLW/iiqIC1Z/Ib60F8W/145zE6n9uM=";
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}