summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-http-client
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-12-03 10:45:52 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-12-13 11:55:46 +0100
commit61f773eefe90ba67b3209bb819f020a1ec7cadb8 (patch)
tree37fd37af6736edba7086374f35bf70fee3dd0754 /pkgs/development/python-modules/python-http-client
parentb0dc82783979e5fc71223c1d2f935720f5b560b8 (diff)
python3Packages.python-http-client: 3.3.3 -> 3.3.4
Diffstat (limited to 'pkgs/development/python-modules/python-http-client')
-rw-r--r--pkgs/development/python-modules/python-http-client/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/python-http-client/default.nix b/pkgs/development/python-modules/python-http-client/default.nix
index b69c478ef27d..db79870ad591 100644
--- a/pkgs/development/python-modules/python-http-client/default.nix
+++ b/pkgs/development/python-modules/python-http-client/default.nix
@@ -7,13 +7,14 @@
buildPythonPackage rec {
pname = "python_http_client";
- version = "3.3.3";
+ version = "3.3.4";
+ format = "setuptools";
src = fetchFromGitHub {
owner = "sendgrid";
repo = "python-http-client";
rev = version;
- sha256 = "sha256-cZqyu67xP0UIKYbhYYTNL5kLiPjjMjayde75sqkHZhg=";
+ sha256 = "sha256-wTXHq+tC+rfvmDZIWvcGhQZqm6DxOmx50BsX0c6asec=";
};
checkInputs = [
@@ -21,9 +22,9 @@ buildPythonPackage rec {
pytestCheckHook
];
- # Failure was fixed by https://github.com/sendgrid/python-http-client/commit/6d62911ab0d0645b499e14bb17c302b48f3c10e4
- disabledTests = [ "test__daterange" ];
- pythonImportsCheck = [ "python_http_client" ];
+ pythonImportsCheck = [
+ "python_http_client"
+ ];
meta = with lib; {
description = "Python HTTP library to call APIs";