nixpkgs/pkgs/development/python-modules/tldextract/default.nix
2026-01-18 10:41:13 +00:00

62 lines
1.3 KiB
Nix

{
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";
};
})