mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
25 lines
572 B
Nix
25 lines
572 B
Nix
{ 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 ];
|
|
};
|
|
}
|