Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi }: 2 3buildPythonPackage rec { 4 pname = "ConfigArgParse"; 5 version = "1.2.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "1p1pzpf5qpf80bfxsx1mbw9blyhhypjvhl3i60pbmhfmhvlpplgd"; 10 }; 11 12 # no tests in tarball 13 doCheck = false; 14 15 meta = with lib; { 16 description = "A drop-in replacement for argparse"; 17 homepage = "https://github.com/zorro3/ConfigArgParse"; 18 license = licenses.mit; 19 maintainers = [ maintainers.willibutz ]; 20 }; 21}