summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-http-client
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-01-03 16:30:51 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-01-05 13:20:50 +0100
commitafa8c47666496f2aa813e599bb7545e4c9ff2ab0 (patch)
tree2d01d45a27786326096000deb043cf9764fa79d7 /pkgs/development/python-modules/python-http-client
parentf89b878da594fd6ca5179f92753a472d7bbe3ee5 (diff)
python3Packages.python-http-client: Disable failing test
Diffstat (limited to 'pkgs/development/python-modules/python-http-client')
-rw-r--r--pkgs/development/python-modules/python-http-client/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/python-http-client/default.nix b/pkgs/development/python-modules/python-http-client/default.nix
index 78a3b018c7ea..b108de64dd21 100644
--- a/pkgs/development/python-modules/python-http-client/default.nix
+++ b/pkgs/development/python-modules/python-http-client/default.nix
@@ -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"
];