mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python38Packages.boto: disable tests for py38
Hmac logic has changed, and upstream no longer maintaining package
This commit is contained in:
parent
b5daee5c5d
commit
5f06ba50e2
1 changed files with 2 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
|||
{ pkgs
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, isPy38
|
||||
, python
|
||||
, nose
|
||||
, mock
|
||||
|
@ -21,6 +22,7 @@ buildPythonPackage rec {
|
|||
${python.interpreter} tests/test.py default
|
||||
'';
|
||||
|
||||
doCheck = (!isPy38); # hmac functionality has changed
|
||||
checkInputs = [ nose mock ];
|
||||
propagatedBuildInputs = [ requests httpretty ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue