5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
59 lines
1.1 KiB
Nix
59 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pythonOlder,
|
|
poetry-core,
|
|
aenum,
|
|
aioconsole,
|
|
aiohttp,
|
|
inflection,
|
|
pydantic,
|
|
python-dateutil,
|
|
typing-extensions,
|
|
urllib3,
|
|
websockets,
|
|
zeroconf,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "mozart-api";
|
|
version = "3.4.1.8.6";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchPypi {
|
|
pname = "mozart_api";
|
|
inherit version;
|
|
hash = "sha256-a0yjVS1FnR/n7Hjw/VRFztkUFD0gQQg7OXbyPTf+Kus=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
aenum
|
|
aioconsole
|
|
aiohttp
|
|
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 ];
|
|
};
|
|
}
|