python312Packages.docker: fix tests

This commit is contained in:
K900 2024-09-28 20:30:29 +03:00
parent aef46265d9
commit 3bd454d384

View File

@ -16,6 +16,7 @@
# optional-dependenices
paramiko,
pynacl, # optional in paramiko, required here
websocket-client,
# tests
@ -57,7 +58,10 @@ buildPythonPackage rec {
nativeCheckInputs = [
pytestCheckHook
] ++ lib.flatten (lib.attrValues optional-dependencies);
paramiko
pynacl
websocket-client
];
pytestFlagsArray = [ "tests/unit" ];