504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
22 lines
575 B
Nix
22 lines
575 B
Nix
{ 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 = with lib; {
|
|
description = "Additional Python argparse types and actions";
|
|
homepage = "https://github.com/eerimoq/argparse_addons";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ frogamic sbruder ];
|
|
};
|
|
}
|