We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aef700 commit 37b1cd7Copy full SHA for 37b1cd7
pkgs/development/python-modules/aiovlc/default.nix
@@ -8,7 +8,6 @@
8
pytest-timeout,
9
pytestCheckHook,
10
pythonOlder,
11
- rich,
12
typer,
13
}:
14
@@ -28,17 +27,16 @@ buildPythonPackage rec {
28
27
29
build-system = [ poetry-core ];
30
31
- dependencies = [
32
- rich
33
- typer
34
- ];
+ optional-dependencies = {
+ cli = [ typer ];
+ };
35
36
nativeCheckInputs = [
37
pytest-asyncio
38
pytest-cov-stub
39
pytest-timeout
40
pytestCheckHook
41
+ ] ++ lib.flatten (builtins.attrValues optional-dependencies);
42
43
pythonImportsCheck = [ "aiovlc" ];
44
0 commit comments