python312Packages.dsnap: disable tests

https://github.com/RhinoSecurityLabs/dsnap/issues/26
ImportError: cannot import name 'mock_iam' from 'moto'
This commit is contained in:
Fabian Affolter 2024-04-12 09:53:42 +02:00
parent 63cc6594d1
commit fc19d1f5ed
1 changed files with 4 additions and 0 deletions

View File

@ -60,6 +60,10 @@ buildPythonPackage rec {
pytestCheckHook
] ++ lib.flatten (builtins.attrValues passthru.optional-dependencies);
# https://github.com/RhinoSecurityLabs/dsnap/issues/26
# ImportError: cannot import name 'mock_iam' from 'moto'
doCheck = false;
pythonImportsCheck = [
"dsnap"
];