aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-11-30 12:56:24 -0800
committerFrederik Rietdijk <fridh@fridh.nl>2020-12-01 14:44:25 +0100
commit732b38a835492f4e07b170e04010d2b8b2c9a2b3 (patch)
treec503f515eeee9a66d6db75d4d8e0565fd4b8acb2
parent0e15bde06f49fd9be000879f3d181dfef7c95c3b (diff)
python39Packages.boto: disable for python39
no longer compatible: ``` File "/build/boto-2.49.0/tests/unit/utils/test_utils.py", line 88, in hmac_hashfunc return hmac.new(b'mysecretkey', msg) File "/nix/store/x3655l9x6b5khxzzl0s2zg1kn0qr3zfs-python3-3.9.0/lib/python3.9/hmac.py", line 170, in new return HMAC(key, msg, digestmod) File "/nix/store/x3655l9x6b5khxzzl0s2zg1kn0qr3zfs-python3-3.9.0/lib/python3.9/hmac.py", line 56, in __init__ raise TypeError("Missing required parameter 'digestmod'.") TypeError: Missing required parameter 'digestmod'. ```
-rw-r--r--pkgs/development/python-modules/boto/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/boto/default.nix b/pkgs/development/python-modules/boto/default.nix
index 85ebae5b612f..042a9a296ff7 100644
--- a/pkgs/development/python-modules/boto/default.nix
+++ b/pkgs/development/python-modules/boto/default.nix
@@ -1,6 +1,7 @@
{ pkgs
, buildPythonPackage
, fetchPypi
+, pythonAtLeast
, isPy38
, python
, nose
@@ -12,6 +13,7 @@
buildPythonPackage rec {
pname = "boto";
version = "2.49.0";
+ disabled = pythonAtLeast "3.9"; # no longer compatible with hmac std lib package
src = fetchPypi {
inherit pname version;