2024-06-05 15:53:02 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
buildPythonPackage,
|
|
|
|
fetchFromGitHub,
|
|
|
|
filelock,
|
|
|
|
idna,
|
|
|
|
pytest-mock,
|
|
|
|
pytestCheckHook,
|
|
|
|
pythonOlder,
|
|
|
|
requests,
|
|
|
|
requests-file,
|
|
|
|
responses,
|
|
|
|
setuptools,
|
|
|
|
setuptools-scm,
|
|
|
|
syrupy,
|
2020-04-24 23:36:52 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2023-10-19 13:55:26 +00:00
|
|
|
pname = "tldextract";
|
2024-04-21 15:54:59 +00:00
|
|
|
version = "5.1.2";
|
2023-10-19 13:55:26 +00:00
|
|
|
pyproject = true;
|
2022-03-05 16:20:37 +00:00
|
|
|
|
2023-10-19 13:55:26 +00:00
|
|
|
disabled = pythonOlder "3.8";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2023-10-19 13:55:26 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "john-kurkowski";
|
|
|
|
repo = "tldextract";
|
|
|
|
rev = "refs/tags/${version}";
|
2024-04-21 15:54:59 +00:00
|
|
|
hash = "sha256-rieDDSCit9UcMpCMs2X3+cCS41Wbrp4WWVMzKj/jwEM=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-03-05 16:20:37 +00:00
|
|
|
nativeBuildInputs = [
|
2023-10-09 19:29:22 +00:00
|
|
|
setuptools
|
2022-03-05 16:20:37 +00:00
|
|
|
setuptools-scm
|
|
|
|
];
|
2021-03-20 04:20:00 +00:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
filelock
|
|
|
|
idna
|
|
|
|
requests
|
|
|
|
requests-file
|
|
|
|
];
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
nativeCheckInputs = [
|
2021-03-20 04:20:00 +00:00
|
|
|
pytest-mock
|
|
|
|
pytestCheckHook
|
|
|
|
responses
|
2024-04-21 15:54:59 +00:00
|
|
|
syrupy
|
2021-03-20 04:20:00 +00:00
|
|
|
];
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
pythonImportsCheck = [ "tldextract" ];
|
2020-12-25 13:55:36 +00:00
|
|
|
|
2021-03-20 04:20:00 +00:00
|
|
|
meta = with lib; {
|
|
|
|
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.
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/john-kurkowski/tldextract";
|
2023-10-19 13:55:26 +00:00
|
|
|
changelog = "https://github.com/john-kurkowski/tldextract/blob/${version}/CHANGELOG.md";
|
2021-03-20 04:20:00 +00:00
|
|
|
license = with licenses; [ bsd3 ];
|
|
|
|
maintainers = with maintainers; [ fab ];
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "tldextract";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|