python310Packages.tld: 0.12.7 -> 0.13

Changelog: https://github.com/barseghyanartur/tld/blob/0.13/CHANGELOG.rst
This commit is contained in:
Fabian Affolter 2023-02-28 00:03:31 +01:00
parent 2c106c1e7c
commit 5e98938f2b

View File

@ -9,16 +9,20 @@
buildPythonPackage rec {
pname = "tld";
version = "0.12.7";
version = "0.13";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-tvdynhnODrx3ugpltw1iE665UsAf9gXhKZquX7diHF4=";
hash = "sha256-k93l4cBL3xhEl26uRAcGN50h9KsjW3PAXXSD4HT7Vik=";
};
postPatch = ''
sed -i "/--cov/d" pytest.ini
'';
nativeCheckInputs = [
pytestCheckHook
];