Files
nixpkgs/pkgs/development/python-modules/mozart-api/default.nix
T
Martin Weinelt 2bfe2b367c python3Packages.mozart-api: 5.3.1.108.0 -> 5.3.1.108.1
https://github.com/bang-olufsen/mozart-open-api/releases/tag/5.3.1.108.1

This commit was automatically generated using update-python-libraries.
2026-02-01 17:19:35 +01:00

58 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
poetry-core,
aenum,
aioconsole,
aiohttp,
aiohttp-retry,
inflection,
pydantic,
python-dateutil,
typing-extensions,
urllib3,
websockets,
zeroconf,
}:
buildPythonPackage rec {
pname = "mozart-api";
version = "5.3.1.108.1";
pyproject = true;
src = fetchPypi {
pname = "mozart_api";
inherit version;
hash = "sha256-e4tlcwYC1AQA29uPg+UgFcy2ahIZuIaNlhicJiemVgo=";
};
build-system = [ poetry-core ];
dependencies = [
aioconsole
aiohttp
aiohttp-retry
inflection
pydantic
python-dateutil
typing-extensions
urllib3
websockets
zeroconf
];
# Package has no tests
doCheck = false;
pythonImportsCheck = [ "mozart_api" ];
meta = {
description = "REST API for the Bang & Olufsen Mozart platform";
homepage = "https://github.com/bang-olufsen/mozart-open-api";
changelog = "https://github.com/bang-olufsen/mozart-open-api/releases/tag/${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pyrox0 ];
};
}