pythonPackages.acme: Disable tests

This commit is contained in:
Sandro Jäckel 2020-12-04 16:15:04 +01:00
parent c0a87f4f58
commit e8b661e3be
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -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}";