Get the tor and i2p dependencies into the check environment again

This commit is contained in:
Jean-Paul Calderone 2023-03-27 08:57:51 -04:00
parent 1a6197d07c
commit de9907bd71

View File

@ -137,7 +137,11 @@ buildPythonPackage rec {
# runtime dependencies test-only dependencies (for whichever test
# suites are enabled).
checkInputs = (
lib.optionals (doUnit || doIntegration) unitTestDependencies ++
lib.optionals (doUnit || doIntegration) (
unitTestDependencies ++
passthru.optional-dependencies.tor ++
passthru.optional-dependencies.i2p
) ++
lib.optionals doIntegration integrationTestDependencies
);