mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
975ae5ec7e
Diff: https://github.com/john-kurkowski/tldextract/compare/refs/tags/5.1.2...5.1.3 Changelog: https://github.com/john-kurkowski/tldextract/blob/5.1.3/CHANGELOG.md
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
filelock,
|
|
idna,
|
|
pytest-mock,
|
|
pytestCheckHook,
|
|
pythonOlder,
|
|
requests,
|
|
requests-file,
|
|
responses,
|
|
setuptools,
|
|
setuptools-scm,
|
|
syrupy,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "tldextract";
|
|
version = "5.1.3";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "john-kurkowski";
|
|
repo = "tldextract";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-gcgQGZS/dsTTC4Szpjreb2fAsVZxxOCE1erVvU1q4xM=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools
|
|
setuptools-scm
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
filelock
|
|
idna
|
|
requests
|
|
requests-file
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-mock
|
|
pytestCheckHook
|
|
responses
|
|
syrupy
|
|
];
|
|
|
|
pythonImportsCheck = [ "tldextract" ];
|
|
|
|
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.
|
|
'';
|
|
homepage = "https://github.com/john-kurkowski/tldextract";
|
|
changelog = "https://github.com/john-kurkowski/tldextract/blob/${version}/CHANGELOG.md";
|
|
license = with licenses; [ bsd3 ];
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "tldextract";
|
|
};
|
|
}
|