51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{
|
|
# nix build inputs
|
|
lib,
|
|
buildHomeAssistantComponent,
|
|
spotifyplus-src,
|
|
# deps
|
|
oauthlib,
|
|
platformdirs,
|
|
requests,
|
|
requests_oauthlib,
|
|
soco,
|
|
urllib3,
|
|
zeroconf,
|
|
smartinspect, # overridden in python3Packages
|
|
spotifywebapi, # overridden in python3Packages
|
|
...
|
|
}: let
|
|
inherit (builtins) fromJSON readFile;
|
|
manifest = fromJSON (readFile "${spotifyplus-src}/custom_components/spotifyplus/manifest.json");
|
|
in
|
|
buildHomeAssistantComponent {
|
|
owner = "thlucas1";
|
|
|
|
inherit (manifest) domain version;
|
|
src = spotifyplus-src;
|
|
|
|
dependencies = [
|
|
oauthlib
|
|
platformdirs
|
|
requests
|
|
requests_oauthlib
|
|
soco
|
|
urllib3
|
|
zeroconf
|
|
smartinspect
|
|
spotifywebapi
|
|
];
|
|
|
|
# Upstream sometimes forgets to bump version number.
|
|
# Since we're guaranteed to have lastest git, this is safe
|
|
ignoreVersionRequirement = ["spotifywebapipython"];
|
|
|
|
meta = {
|
|
license = lib.licenses.mit;
|
|
homepage = "https://github.com/thlucas1/homeassistantcomponent_spotifyplus";
|
|
description = ''
|
|
Home Assistant integration for Spotify Player control, services,
|
|
and soundtouchplus integration support.
|
|
'';
|
|
};
|
|
}
|