mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-08 14:23:40 +00:00
33 lines
640 B
Nix
33 lines
640 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "argparse-addons";
|
|
version = "0.12.0";
|
|
pyproject = true;
|
|
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "argparse_addons";
|
|
inherit (finalAttrs) version;
|
|
hash = "sha256-YyKg3NcGiH52MI0jE21bhtoOq3WigtxklnAdEhC0YK8=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "argparse_addons" ];
|
|
|
|
meta = {
|
|
description = "Additional Python argparse types and actions";
|
|
homepage = "https://github.com/eerimoq/argparse_addons";
|
|
license = lib.licenses.mit;
|
|
maintainers = [
|
|
];
|
|
};
|
|
})
|