blob: 702461222ff488ae467215df273af7da04b0f2c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "disposable-email-domains";
version = "0.0.181";
pyproject = true;
__structuredAttrs = true;
# No tags on GitHub
src = fetchPypi {
pname = "disposable_email_domains";
inherit (finalAttrs) version;
hash = "sha256-BtW0MXgFTphae3O5XPDnix8RTKDx/tvzpTN4znZjFSI=";
};
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 ];
};
})
|