pythonPackages.tldextract: add missing dependency
This commit is contained in:
parent
40a7c98c1c
commit
b7cf390837
@ -1,5 +1,5 @@
|
|||||||
{ lib, fetchPypi, buildPythonPackage, setuptools_scm
|
{ lib, fetchPypi, buildPythonPackage, setuptools_scm
|
||||||
, requests, requests-file, idna, pytest
|
, requests, requests-file, idna, filelock, pytest
|
||||||
, responses
|
, responses
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -12,14 +12,17 @@ buildPythonPackage rec {
|
|||||||
sha256 = "cfae9bc8bda37c3e8c7c8639711ad20e95dc85b207a256b60b0b23d7ff5540ea";
|
sha256 = "cfae9bc8bda37c3e8c7c8639711ad20e95dc85b207a256b60b0b23d7ff5540ea";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ requests requests-file idna ];
|
propagatedBuildInputs = [ requests requests-file idna filelock ];
|
||||||
checkInputs = [ pytest responses ];
|
checkInputs = [ pytest responses ];
|
||||||
nativeBuildInputs = [ setuptools_scm ];
|
nativeBuildInputs = [ setuptools_scm ];
|
||||||
|
|
||||||
|
# No tests included
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "tldextract" ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
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.";
|
description = "Accurately separate the TLD from the registered domain and subdomains of a URL, using the Public Suffix List";
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user