Skip to content

Commit d04a170

Browse files
authored
python312Packages.aiovlc: 0.6.0 -> 0.6.1 (#354608)
2 parents 300109c + 37b1cd7 commit d04a170

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

pkgs/development/python-modules/aiovlc/default.nix

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,12 @@
88
pytest-timeout,
99
pytestCheckHook,
1010
pythonOlder,
11-
rich,
1211
typer,
1312
}:
1413

1514
buildPythonPackage rec {
1615
pname = "aiovlc";
17-
version = "0.6.0";
16+
version = "0.6.1";
1817
pyproject = true;
1918

2019
disabled = pythonOlder "3.11";
@@ -23,22 +22,21 @@ buildPythonPackage rec {
2322
owner = "MartinHjelmare";
2423
repo = "aiovlc";
2524
rev = "refs/tags/v${version}";
26-
hash = "sha256-2YG/m/z2xHUep2VJuCQs4+gGHUolj/u3kycpYZmUyBs=";
25+
hash = "sha256-NnctcSgEHWEJUB0yDrSYMochh20CfT5jgtcALKmDjdo=";
2726
};
2827

2928
build-system = [ poetry-core ];
3029

31-
dependencies = [
32-
rich
33-
typer
34-
];
30+
optional-dependencies = {
31+
cli = [ typer ];
32+
};
3533

3634
nativeCheckInputs = [
3735
pytest-asyncio
3836
pytest-cov-stub
3937
pytest-timeout
4038
pytestCheckHook
41-
];
39+
] ++ lib.flatten (builtins.attrValues optional-dependencies);
4240

4341
pythonImportsCheck = [ "aiovlc" ];
4442

0 commit comments

Comments
 (0)