nixos-configs/legacyPackages/hass-components/spotifyplus/default.nix

35 lines
807 B
Nix
Raw Normal View History

2024-09-19 22:16:11 -04:00
{
spotifyplus-src,
buildHomeAssistantComponent,
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;
prePatch = ''
substituteInPlace ./custom_components/spotifyplus/manifest.json \
--replace-warn "urllib3>=1.21.1,<1.27" "urllib3>=1.21.1"
'';
2024-09-19 22:16:11 -04:00
propagatedBuildInputs = with python3Packages; [
oauthlib
platformdirs
requests
requests_oauthlib
chore: update flake.lock Flake Inputs: • Updated input 'astal': 'github:Aylur/astal/9e63fe3' (2024-09-28) → 'github:Aylur/astal/f17b28d' (2024-09-29) • Updated input 'gpu-screen-recorder-src': 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=ebc8c69' (2024-09-27) → 'git+https://repo.dec05eba.com/gpu-screen-recorder?ref=refs/heads/master&rev=0eb9ce0' (2024-09-29) • Updated input 'hyprland/hyprcursor': 'github:hyprwm/hyprcursor/912d560' (2024-08-02) → 'github:hyprwm/hyprcursor/b98726e' (2024-09-28) • Updated input 'nix-gaming': 'github:fufexan/nix-gaming/b9750ee' (2024-09-28) → 'github:fufexan/nix-gaming/6401744' (2024-09-29) • Updated input 'nix-gaming/umu': 'git+https://github.com/Open-Wine-Components/umu-launcher/?dir=packaging/nix&ref=refs/heads/main&rev=e42043a&submodules=1' (2024-09-19) → 'git+https://github.com/Open-Wine-Components/umu-launcher/?dir=packaging/nix&ref=refs/heads/main&rev=5cc1c3f&submodules=1' (2024-09-25) • Updated input 'nix-index-db': 'github:Mic92/nix-index-database/c7515c2' (2024-09-22) → 'github:Mic92/nix-index-database/a2ab158' (2024-09-29) • Updated input 'nixpkgs-wayland': 'github:nix-community/nixpkgs-wayland/811af6a' (2024-09-27) → 'github:nix-community/nixpkgs-wayland/206b2a2' (2024-09-29) • Updated input 'spotifyplus-src': 'github:thlucas1/homeassistantcomponent_spotifyplus/f017285' (2024-09-28) → 'github:thlucas1/homeassistantcomponent_spotifyplus/0765d55' (2024-09-29) Docker Images: • ghcr.io/linuxserver/radarr latest: sha256:1a50d4f08e283aa9ff4c723b940dceb4e8aeff7946e1993213efd0de3d5a4adb → sha256:d758c5a5edc4cda1263260948b3f460f511430bccea505dca3cb70af01332ff8
2024-09-29 16:31:31 -04:00
soco
urllib3
2024-09-19 22:16:11 -04:00
zeroconf
smartinspect # overridden in this python3Packages
spotifywebapi # overridden in this python3Packages
];
}