nixos-configs/legacyPackages/hass-components/spotifyplus/default.nix
matt1432 c68779da23
All checks were successful
Discord / discord commits (push) Has been skipped
refactor(hass): clean up and remove sonos for spotifyplus
2024-09-30 13:39:09 -04:00

19 lines
506 B
Nix

{
buildHassComponent,
smartinspect-src,
spotifywebapi-src,
pkgs,
...
}: let
python3Packages = pkgs.python3Packages.override {
overrides = self: super: rec {
smartinspect = pkgs.callPackage ./smartinspect.nix {
inherit python3Packages smartinspect-src;
};
spotifywebapi = pkgs.callPackage ./spotifywebapi.nix {
inherit python3Packages smartinspect spotifywebapi-src;
};
};
};
in
buildHassComponent ./spotifyplus.nix {inherit python3Packages;}