python312Packages.roadlib: add missing inputs (#408150)

This commit is contained in:
Fabian Affolter
2025-05-18 00:19:31 +02:00
committed by GitHub
@@ -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;