nixpkgs/pkgs/development/python-modules/tldextract/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

64 lines
1.2 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchPypi
, filelock
, idna
, pytest-mock
, pytestCheckHook
, pythonOlder
, requests
, requests-file
2018-09-11 22:51:50 +01:00
, responses
, setuptools-scm
2018-09-11 22:51:50 +01:00
}:
buildPythonPackage rec {
pname = "tldextract";
version = "3.2.0";
2022-02-25 10:27:32 +00:00
format = "setuptools";
disabled = pythonOlder "3.6";
2018-09-11 22:51:50 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "sha256-PUtqIQVgC30CkOoje/MLaw3HY+UPy+QOhJoBm9bby/8=";
2018-09-11 22:51:50 +01:00
};
2022-02-25 10:27:32 +00:00
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
filelock
idna
requests
requests-file
];
checkInputs = [
pytest-mock
pytestCheckHook
responses
];
postPatch = ''
2022-02-25 10:27:32 +00:00
substituteInPlace pytest.ini \
--replace " --pylint" ""
'';
2018-09-11 22:51:50 +01:00
2022-02-25 10:27:32 +00:00
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";
license = with licenses; [ bsd3 ];
maintainers = with maintainers; [ fab ];
2018-09-11 22:51:50 +01:00
};
}