14 buildPythonPackage rec {
19 disabled = pythonOlder "3.11";
21 src = fetchFromGitHub {
22 owner = "MartinHjelmare";
24 rev = "refs/tags/v${version}";
25 hash = "sha256-NnctcSgEHWEJUB0yDrSYMochh20CfT5jgtcALKmDjdo=";
28 build-system = [ poetry-core ];
30 optional-dependencies = {
39 ] ++ lib.flatten (builtins.attrValues optional-dependencies);
41 pythonImportsCheck = [ "aiovlc" ];
44 description = "Python module to control VLC";
45 homepage = "https://github.com/MartinHjelmare/aiovlc";
46 changelog = "https://github.com/MartinHjelmare/aiovlc/blob/v${version}/CHANGELOG.md";
47 license = licenses.asl20;
48 maintainers = with maintainers; [ fab ];