python38Packages.boto: disable tests for py38

Hmac logic has changed, and upstream no longer maintaining package
This commit is contained in:
Jonathan Ringer 2019-10-26 15:28:42 -07:00 committed by Frederik Rietdijk
parent b5daee5c5d
commit 5f06ba50e2

View file

@ -1,6 +1,7 @@
{ pkgs { pkgs
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, isPy38
, python , python
, nose , nose
, mock , mock
@ -21,6 +22,7 @@ buildPythonPackage rec {
${python.interpreter} tests/test.py default ${python.interpreter} tests/test.py default
''; '';
doCheck = (!isPy38); # hmac functionality has changed
checkInputs = [ nose mock ]; checkInputs = [ nose mock ];
propagatedBuildInputs = [ requests httpretty ]; propagatedBuildInputs = [ requests httpretty ];