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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
filelock,
idna,
pytest-mock,
pytestCheckHook,
requests,
requests-file,
responses,
setuptools,
setuptools-scm,
syrupy,
}:
buildPythonPackage (finalAttrs: {
pname = "tldextract";
version = "5.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "john-kurkowski";
repo = "tldextract";
tag = finalAttrs.version;
hash = "sha256-WPf996EVVEKxD+ZFDB8nIrrd1Sxr+IOI8I19J+KMPRg=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
filelock
idna
requests
requests-file
];
nativeCheckInputs = [
pytest-mock
pytestCheckHook
responses
syrupy
];
pythonImportsCheck = [ "tldextract" ];
meta = {
description = "Python module to accurately separate the TLD from the domain of an URL";
longDescription = ''
tldextract accurately separates the gTLD or ccTLD (generic or country code top-level domain)
from the registered domain and subdomains of a URL.
'';
homepage = "https://github.com/john-kurkowski/tldextract";
changelog = "https://github.com/john-kurkowski/tldextract/blob/${finalAttrs.src.tag}/CHANGELOG.md";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "tldextract";
};
})
|