02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
23 lines
575 B
Nix
23 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 ];
|
|
};
|
|
}
|