7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
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.8";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.11";
|
|
|
|
src = fetchPypi {
|
|
pname = "mozart_api";
|
|
inherit version;
|
|
hash = "sha256-Lonv9f7/FSEdisKOuL+T1gKbxpog22DcNZTaK9L84Mc=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|