python3Packages.tldextract: enable tests (#117787)
This commit is contained in:
parent
d404ecd995
commit
60b85e6b95
1 changed files with 38 additions and 10 deletions
|
@ -1,28 +1,56 @@
|
||||||
{ lib, fetchPypi, buildPythonPackage, setuptools_scm
|
{ lib
|
||||||
, requests, requests-file, idna, filelock, pytest
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, filelock
|
||||||
|
, idna
|
||||||
|
, pytest-mock
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, requests
|
||||||
|
, requests-file
|
||||||
, responses
|
, responses
|
||||||
|
, setuptools-scm
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "tldextract";
|
pname = "tldextract";
|
||||||
version = "3.1.0";
|
version = "3.1.0";
|
||||||
|
disabled = pythonOlder "3.6";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "cfae9bc8bda37c3e8c7c8639711ad20e95dc85b207a256b60b0b23d7ff5540ea";
|
sha256 = "cfae9bc8bda37c3e8c7c8639711ad20e95dc85b207a256b60b0b23d7ff5540ea";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ requests requests-file idna filelock ];
|
nativeBuildInputs = [ setuptools-scm ];
|
||||||
checkInputs = [ pytest responses ];
|
|
||||||
nativeBuildInputs = [ setuptools_scm ];
|
propagatedBuildInputs = [
|
||||||
|
filelock
|
||||||
|
idna
|
||||||
|
requests
|
||||||
|
requests-file
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest-mock
|
||||||
|
pytestCheckHook
|
||||||
|
responses
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace pytest.ini --replace " --pylint" ""
|
||||||
|
'';
|
||||||
|
|
||||||
# No tests included
|
|
||||||
doCheck = false;
|
|
||||||
pythonImportsCheck = [ "tldextract" ];
|
pythonImportsCheck = [ "tldextract" ];
|
||||||
|
|
||||||
meta = {
|
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";
|
homepage = "https://github.com/john-kurkowski/tldextract";
|
||||||
description = "Accurately separate the TLD from the registered domain and subdomains of a URL, using the Public Suffix List";
|
license = with licenses; [ bsd3 ];
|
||||||
license = lib.licenses.bsd3;
|
maintainers = with maintainers; [ fab ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue