1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00

python312Packages.aiovlc: 0.6.0 -> 0.6.1 (#354608)

This commit is contained in:
Fabian Affolter 2024-11-09 08:07:29 +01:00 committed by GitHub
commit d04a17077a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,13 +8,12 @@
pytest-timeout,
pytestCheckHook,
pythonOlder,
rich,
typer,
}:
buildPythonPackage rec {
pname = "aiovlc";
version = "0.6.0";
version = "0.6.1";
pyproject = true;
disabled = pythonOlder "3.11";
@ -23,22 +22,21 @@ buildPythonPackage rec {
owner = "MartinHjelmare";
repo = "aiovlc";
rev = "refs/tags/v${version}";
hash = "sha256-2YG/m/z2xHUep2VJuCQs4+gGHUolj/u3kycpYZmUyBs=";
hash = "sha256-NnctcSgEHWEJUB0yDrSYMochh20CfT5jgtcALKmDjdo=";
};
build-system = [ poetry-core ];
dependencies = [
rich
typer
];
optional-dependencies = {
cli = [ typer ];
};
nativeCheckInputs = [
pytest-asyncio
pytest-cov-stub
pytest-timeout
pytestCheckHook
];
] ++ lib.flatten (builtins.attrValues optional-dependencies);
pythonImportsCheck = [ "aiovlc" ];