nixpkgs/pkgs/development/python-modules/argparse-addons/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

22 lines
550 B
Nix

{ 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 ];
};
}