forked from mirrors/nixpkgs
python311Packages.nibe: add optional-dependencies
This commit is contained in:
parent
4008376f2e
commit
cbdd9abbb5
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue