summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-http-client
diff options
context:
space:
mode:
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, 5 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/python-http-client/default.nix b/pkgs/development/python-modules/python-http-client/default.nix
index db79870ad591..3a8ad2188fc1 100644
--- a/pkgs/development/python-modules/python-http-client/default.nix
+++ b/pkgs/development/python-modules/python-http-client/default.nix
@@ -3,18 +3,21 @@
, fetchFromGitHub
, mock
, pytestCheckHook
+, pythonOlder
}:
buildPythonPackage rec {
pname = "python_http_client";
- version = "3.3.4";
+ version = "3.3.5";
format = "setuptools";
+ disabled = pythonOlder "3.8";
+
src = fetchFromGitHub {
owner = "sendgrid";
repo = "python-http-client";
rev = version;
- sha256 = "sha256-wTXHq+tC+rfvmDZIWvcGhQZqm6DxOmx50BsX0c6asec=";
+ sha256 = "sha256-VSrh6t9p7Xb8HqAwcuDSUD2Pj3NcXeg7ygKLG2MHFxk=";
};
checkInputs = [