Merge pull request #161339 from r-ryantm/auto-update/python3.10-tldextract
python310Packages.tldextract: 3.1.2 -> 3.2.0
This commit is contained in:
commit
325f415d85
1 changed files with 12 additions and 5 deletions
|
@ -14,15 +14,19 @@
|
|||
|
||||
buildPythonPackage rec {
|
||||
pname = "tldextract";
|
||||
version = "3.1.2";
|
||||
version = "3.2.0";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-0gNMNVhlH32P2t6oP7aBBQstZi3GegDZUDJtyQIClEQ=";
|
||||
sha256 = "sha256-PUtqIQVgC30CkOoje/MLaw3HY+UPy+QOhJoBm9bby/8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
filelock
|
||||
|
@ -38,10 +42,13 @@ buildPythonPackage rec {
|
|||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pytest.ini --replace " --pylint" ""
|
||||
substituteInPlace pytest.ini \
|
||||
--replace " --pylint" ""
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [ "tldextract" ];
|
||||
pythonImportsCheck = [
|
||||
"tldextract"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python module to accurately separate the TLD from the domain of an URL";
|
||||
|
|
Loading…
Reference in a new issue