My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/docopt-ng/default.nix

24 lines
572 B

{ lib
, buildPythonPackage
, fetchPypi
}:
buildPythonPackage rec {
pname = "docopt-ng";
version = "0.7.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-hs7qAy8M+lnmB3brDPOKxzZTWBAihyMg9H3IdGeNckQ=";
};
pythonImportsCheck = [ "docopt" ];
doCheck = false; # no tests in the package
meta = with lib; {
description = "More-magic command line arguments parser. Now with more maintenance!";
homepage = "https://github.com/bazaar-projects/docopt-ng";
license = licenses.mit;
maintainers = with maintainers; [ fgaz ];
};
}