blob: ac1645ab1a48d2b3dcaf95ea218c3930c8861b01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
{
lib,
buildPythonPackage,
fetchPypi,
}:
buildPythonPackage rec {
pname = "argparse-addons";
version = "0.12.0";
format = "setuptools";
src = fetchPypi {
pname = "argparse_addons";
inherit version;
hash = "sha256-YyKg3NcGiH52MI0jE21bhtoOq3WigtxklnAdEhC0YK8=";
};
pythonImportsCheck = [ "argparse_addons" ];
meta = {
description = "Additional Python argparse types and actions";
homepage = "https://github.com/eerimoq/argparse_addons";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
frogamic
sbruder
];
};
}
|