python312Packages.aiostreammagic: init at 2.2.5
Module for interfacing with Cambridge Audio/Stream Magic compatible streamers https://github.com/noahhusby/aiostreammagic
This commit is contained in:
parent
876b1c2d5d
commit
623af5aef2
52
pkgs/development/python-modules/aiostreammagic/default.nix
Normal file
52
pkgs/development/python-modules/aiostreammagic/default.nix
Normal file
@ -0,0 +1,52 @@
|
||||
{
|
||||
lib,
|
||||
aiohttp,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
mashumaro,
|
||||
orjson,
|
||||
poetry-core,
|
||||
pythonOlder,
|
||||
websockets,
|
||||
yarl,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aiostreammagic";
|
||||
version = "2.2.5";
|
||||
pyproject = true;
|
||||
|
||||
disabled = pythonOlder "3.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "noahhusby";
|
||||
repo = "aiostreammagic";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-fJiP16LvHuYlSkeq/SijWI8YEX8T4lGDJLAVvKplgHI=";
|
||||
};
|
||||
|
||||
pythonRelaxDeps = [ "websockets" ];
|
||||
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
dependencies = [
|
||||
aiohttp
|
||||
mashumaro
|
||||
orjson
|
||||
websockets
|
||||
yarl
|
||||
];
|
||||
|
||||
# Module has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "aiostreammagic" ];
|
||||
|
||||
meta = {
|
||||
description = "Module for interfacing with Cambridge Audio/Stream Magic compatible streamers";
|
||||
homepage = "https://github.com/noahhusby/aiostreammagic";
|
||||
changelog = "https://github.com/noahhusby/aiostreammagic/releases/tag/${version}";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -443,6 +443,8 @@ self: super: with self; {
|
||||
|
||||
aiostream = callPackage ../development/python-modules/aiostream { };
|
||||
|
||||
aiostreammagic = callPackage ../development/python-modules/aiostreammagic { };
|
||||
|
||||
aioswitcher = callPackage ../development/python-modules/aioswitcher { };
|
||||
|
||||
aiosyncthing = callPackage ../development/python-modules/aiosyncthing { };
|
||||
|
Loading…
Reference in New Issue
Block a user