python3Packages.python-http-client: Disable failing test

This commit is contained in:
Martin Weinelt 2023-01-03 16:30:51 +01:00
parent f89b878da5
commit afa8c47666

View file

@ -7,7 +7,7 @@
}:
buildPythonPackage rec {
pname = "python_http_client";
pname = "python-http-client";
version = "3.3.7";
format = "setuptools";
@ -25,6 +25,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = [
# checks date in license file and subsequently fails after new years
"test_daterange"
];
pythonImportsCheck = [
"python_http_client"
];