about summary refs log tree commit diff
path: root/pkgs/development/python-modules/requests-aws4auth
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-11-05 15:25:36 -0800
committerJonathan Ringer <jonringer117@gmail.com>2020-11-05 15:47:10 -0800
commit063116f13fbd20aecb219ae66b8914ece4b34c08 (patch)
tree4b15e03d1f0b98f744888d47ff888d0b1d106263 /pkgs/development/python-modules/requests-aws4auth
parentb135e5f99a6180757035e0368fce017701c778c2 (diff)
python3Packages.requests_aws4auth: disable tests, no longer in pyip
Diffstat (limited to 'pkgs/development/python-modules/requests-aws4auth')
-rw-r--r--pkgs/development/python-modules/requests-aws4auth/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/requests-aws4auth/default.nix b/pkgs/development/python-modules/requests-aws4auth/default.nix
index ede2fc6c6a829..a2e92283dc72f 100644
--- a/pkgs/development/python-modules/requests-aws4auth/default.nix
+++ b/pkgs/development/python-modules/requests-aws4auth/default.nix
@@ -11,11 +11,15 @@ buildPythonPackage rec {
 
   propagatedBuildInputs = [ requests ];
 
+  # pypi package no longer contains tests
+  doCheck = false;
   checkPhase = ''
     cd requests_aws4auth
     ${python.interpreter} test/requests_aws4auth_test.py
   '';
 
+  pythonImportsCheck = [ "requests_aws4auth" ];
+
   meta = {
     description = "Amazon Web Services version 4 authentication for the Python Requests library.";
     homepage = "https://github.com/sam-washington/requests-aws4auth";