summary refs log tree commit diff
path: root/pkgs/development/python-modules/boto
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-10-26 15:28:42 -0700
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-27 16:26:57 +0100
commit5f06ba50e27c2373488645fc6dc8a4fe0a20e06c (patch)
treecbd4b91a7ee3cf1633c5e899bb2d542b94896520 /pkgs/development/python-modules/boto
parentb5daee5c5d50fa94c5122561cbfd79fa62d49ce5 (diff)
downloadnixpkgs-5f06ba50e27c2373488645fc6dc8a4fe0a20e06c.tar
nixpkgs-5f06ba50e27c2373488645fc6dc8a4fe0a20e06c.tar.gz
nixpkgs-5f06ba50e27c2373488645fc6dc8a4fe0a20e06c.tar.bz2
nixpkgs-5f06ba50e27c2373488645fc6dc8a4fe0a20e06c.tar.lz
nixpkgs-5f06ba50e27c2373488645fc6dc8a4fe0a20e06c.tar.xz
nixpkgs-5f06ba50e27c2373488645fc6dc8a4fe0a20e06c.tar.zst
nixpkgs-5f06ba50e27c2373488645fc6dc8a4fe0a20e06c.zip
python38Packages.boto: disable tests for py38
Hmac logic has changed, and upstream no longer maintaining package
Diffstat (limited to 'pkgs/development/python-modules/boto')
-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 e58f071589a..8452e05becc 100644
--- a/pkgs/development/python-modules/boto/default.nix
+++ b/pkgs/development/python-modules/boto/default.nix
@@ -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 ];