nixos-configs/legacyPackages/hass-components/spotifyplus/spotifywebapi.nix
matt1432 0d9c6bab75
All checks were successful
Discord / discord commits (push) Has been skipped
feat(hass): force use of nixpkgs deps for custom integrations
2024-09-22 20:22:37 -04:00

35 lines
868 B
Nix

{
spotifywebapi-src,
python3Packages,
...
}: let
inherit (builtins) elemAt head readFile split;
tag = head (split "\"" (elemAt (split "VERSION:str = \"" (readFile "${spotifywebapi-src}/spotifywebapipython/const.py")) 2));
in
python3Packages.buildPythonPackage {
pname = "spotifywebapiPython";
version = "${tag}+${spotifywebapi-src.shortRev}";
src = spotifywebapi-src;
patchPhase = ''
substituteInPlace ./setup.py --replace-warn \
"docspdoc/build/spotifywebapiPython/" \
"docspdoc/build/spotifywebapipython/"
'';
propagatedBuildInputs = with python3Packages; [
lxml
oauthlib
platformdirs
requests
requests_oauthlib
zeroconf
smartinspect # overridden in this python3Packages
urllib3
];
pythonImportsCheck = [
"spotifywebapipython"
];
}