mediagoblin: fix build by avoiding kombu tests

This commit is contained in:
Sandro Jäckel
2025-03-11 13:18:30 +01:00
committed by Martin Weinelt
parent 07e5273666
commit aea34c87ce
+6
View File
@@ -15,6 +15,12 @@ let
celery = prev.celery.overridePythonAttrs {
doCheck = false;
};
kombu = prev.kombu.overridePythonAttrs {
# avoid conflicts with test only dependencies
doCheck = false;
};
sqlalchemy = prev.sqlalchemy_1_4;
};
};