Files
nixpkgs/pkgs/development/python-modules/aiosendspin/default.nix
Martin Weinelt 2c3ae45d4f python3Packages.aiosendspin: remove pytest-timeout
The timeouts are often too narrow for busy builders making the tests
flaky.
2026-05-09 18:12:53 +02:00

90 lines
1.7 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
# build-system
setuptools,
# dependencies
aiohttp,
av,
mashumaro,
numpy,
orjson,
pillow,
zeroconf,
# test dependencies
pytest-aiohttp,
pytest-cov-stub,
pytest-xdist,
pytestCheckHook,
# meta
music-assistant,
nixosTests,
}:
buildPythonPackage (finalAttrs: {
pname = "aiosendspin";
version = "4.4.0";
pyproject = true;
src = fetchFromGitHub {
owner = "Sendspin";
repo = "aiosendspin";
tag = finalAttrs.version;
hash = "sha256-7edFCGNbECW5rrTbF7vJ4lJUc2IrQZD9VTR3IxJRP08=";
};
# https://github.com/Sendspin/aiosendspin/blob/4.4.0/pyproject.toml#L7
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'version = "0.0.0"' 'version = "${finalAttrs.version}"'
# too narrow timeouts, so remove pytest-timeout
sed -i "/addopts/d" pyproject.toml
'';
build-system = [
setuptools
];
dependencies = [
aiohttp
av
mashumaro
numpy
orjson
pillow
zeroconf
];
nativeCheckInputs = [
pytest-aiohttp
pytest-cov-stub
pytest-xdist
pytestCheckHook
];
pythonImportsCheck = [
"aiosendspin"
];
passthru = {
# needs manual compat testing with music-assistant (sendspin provider)
skipBulkUpdate = true; # nixpkgs-update: no auto update
tests = nixosTests.music-assistant;
};
meta = {
changelog = "https://github.com/Sendspin/aiosendspin/releases/tag/${finalAttrs.src.tag}";
description = "Async Python library implementing the Sendspin Protocol";
homepage = "https://github.com/Sendspin/aiosendspin";
license = lib.licenses.asl20;
inherit (music-assistant.meta) maintainers;
};
})