Files
nixpkgs/pkgs/development/python-modules/disposable-email-domains/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
751 B
Nix
Raw Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "disposable-email-domains";
version = "0.0.137";
pyproject = true;
# No tags on GitHub
src = fetchPypi {
pname = "disposable_email_domains";
inherit version;
hash = "sha256-XX8WqoDKf+ub2EzIiLalFYvJRvIZhD5zXdJ1Q4X/PW0=";
};
build-system = [
setuptools
];
pythonImportsCheck = [ "disposable_email_domains" ];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
description = "Set of disposable email domains";
homepage = "https://github.com/disposable-email-domains/disposable-email-domains";
license = lib.licenses.cc0;
maintainers = with lib.maintainers; [ GaetanLepage ];
};
}