python312Packages.music-assistant-client: init at 1.0.8
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
setuptools,
|
||||
|
||||
# dependencies
|
||||
aiohttp,
|
||||
music-assistant-models,
|
||||
orjson,
|
||||
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "music-assistant-client";
|
||||
version = "1.0.8";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "music-assistant";
|
||||
repo = "client";
|
||||
rev = version;
|
||||
hash = "sha256-QE2PQeXCAq7+iMomCZK+UmrPUApJxwKi/pzCaLJVS/4=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [
|
||||
aiohttp
|
||||
music-assistant-models
|
||||
orjson
|
||||
];
|
||||
|
||||
doCheck = false; # no tests
|
||||
|
||||
pythonImportsCheck = [
|
||||
"music_assistant_client"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Python client to interact with the Music Assistant Server API";
|
||||
homepage = "https://github.com/music-assistant/client";
|
||||
changelog = "https://github.com/music-assistant/client/blob/${src.rev}/CHANGELOG.md";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ ];
|
||||
};
|
||||
}
|
||||
@@ -8503,6 +8503,8 @@ self: super: with self; {
|
||||
|
||||
muscima = callPackage ../development/python-modules/muscima { };
|
||||
|
||||
music-assistant-client = callPackage ../development/python-modules/music-assistant-client { };
|
||||
|
||||
music-assistant-models = callPackage ../development/python-modules/music-assistant-models { };
|
||||
|
||||
musicbrainzngs = callPackage ../development/python-modules/musicbrainzngs { };
|
||||
|
||||
Reference in New Issue
Block a user