3
0
Fork 0
forked from mirrors/nixpkgs

python311Packages.nibe: add optional-dependencies

This commit is contained in:
Fabian Affolter 2024-01-11 21:26:20 +01:00
parent 4008376f2e
commit cbdd9abbb5

View file

@ -3,12 +3,15 @@
, aresponses
, async-modbus
, async-timeout
, asyncclick
, buildPythonPackage
, construct
, exceptiongroup
, fetchFromGitHub
, pandas
, pytest-asyncio
, pytestCheckHook
, python-slugify
, pythonOlder
, setuptools
, tenacity
@ -40,6 +43,16 @@ buildPythonPackage rec {
tenacity
];
passthru.optional-dependencies = {
convert = [
pandas
python-slugify
];
cli = [
asyncclick
];
};
nativeCheckInputs = [
aresponses
pytest-asyncio