mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03: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,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 New Issue
Block a user