summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/argparse-addons/default.nix
blob: 1d50820d4e5d7e4000392826dcd7352ec3a8fac7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "argparse-addons";
  version = "0.12.0";

  src = fetchPypi {
    pname = "argparse_addons";
    inherit version;
    hash = "sha256-YyKg3NcGiH52MI0jE21bhtoOq3WigtxklnAdEhC0YK8=";
  };

  pythonImportsCheck = [ "argparse_addons" ];

  meta = with lib; {
    description = "Additional Python argparse types and actions";
    homepage = "https://github.com/eerimoq/argparse_addons";
    license = licenses.mit;
    maintainers = with maintainers; [ frogamic sbruder ];
  };
}