python312Packages.roadlib: add missing inputs

This commit is contained in:
Fabian Affolter
2025-05-17 23:24:03 +02:00
parent 4c9b7995bf
commit b5b0cecfd2
@@ -1,11 +1,13 @@
{
lib,
adal,
aiohttp,
cryptography,
buildPythonPackage,
fetchPypi,
pyjwt,
pythonOlder,
setuptools,
requests,
sqlalchemy,
}:
@@ -24,11 +26,16 @@ buildPythonPackage rec {
build-system = [ setuptools ];
dependencies = [
adal
cryptography
pyjwt
requests
sqlalchemy
];
optional-dependencies = {
async = [ aiohttp ];
};
# Module has no test
doCheck = false;