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