1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-25 10:36:36 +03:00

pythonPackages.ConfigArgParse: 0.9.3 -> 0.12.0, refactor, move to python-modules

- fetch with `fetchPypi`
- add license, description and myself as maintainer
This commit is contained in:
WilliButz 2017-11-12 23:02:37 +01:00
parent fccc81a671
commit c122dadb51
No known key found for this signature in database
GPG key ID: 92582A10F1179CB2
2 changed files with 22 additions and 22 deletions

View file

@ -0,0 +1,21 @@
{ stdenv, lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "ConfigArgParse";
version = "0.12.0";
src = fetchPypi {
inherit pname version;
sha256 = "0fgkiqh6r3rbkdq3k8c48m85g52k96686rw3a6jg4lcncrkpvk98";
};
# no tests in tarball
doCheck = false;
meta = with lib; {
description = "A drop-in replacement for argparse";
homepage = https://github.com/zorro3/ConfigArgParse;
license = licenses.mit;
maintainer = [ maintainers.willibutz ];
};
}