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'. ```
This commit is contained in:
parent
0e15bde06f
commit
732b38a835
@ -1,6 +1,7 @@
|
|||||||
{ pkgs
|
{ pkgs
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
|
, pythonAtLeast
|
||||||
, isPy38
|
, isPy38
|
||||||
, python
|
, python
|
||||||
, nose
|
, nose
|
||||||
@ -12,6 +13,7 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "boto";
|
pname = "boto";
|
||||||
version = "2.49.0";
|
version = "2.49.0";
|
||||||
|
disabled = pythonAtLeast "3.9"; # no longer compatible with hmac std lib package
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user