about summary refs log tree commit diff
path: root/pkgs/development/python-modules/acme
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2020-12-04 16:15:04 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2020-12-08 05:01:04 +0100
commite8b661e3be83bacc3c3ac3df071ec9ebaebaa117 (patch)
treeb99324e33b181ffd7faf0e6690f809afcd7e8de8 /pkgs/development/python-modules/acme
parentc0a87f4f5856ad4862fa317d474e912010eef298 (diff)
pythonPackages.acme: Disable tests
Diffstat (limited to 'pkgs/development/python-modules/acme')
-rw-r--r--pkgs/development/python-modules/acme/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/acme/default.nix b/pkgs/development/python-modules/acme/default.nix
index e9156b5c6af1e..e63a26e5f74f1 100644
--- a/pkgs/development/python-modules/acme/default.nix
+++ b/pkgs/development/python-modules/acme/default.nix
@@ -1,6 +1,5 @@
 { buildPythonPackage
 , certbot
-, pytest
 , cryptography
 , pyasn1
 , pyopenssl
@@ -25,7 +24,9 @@ buildPythonPackage rec {
     werkzeug mock ndg-httpsclient josepy
   ];
 
-  checkInputs = [ pytest ];
+  # does not contain any tests
+  doCheck = false;
+  pythonImportsCheck = [ "acme" ];
 
   sourceRoot = "source/${pname}";