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

30 lines
689 B
Nix
Raw Normal View History

2024-09-19 22:16:11 -04:00
{
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;
propagatedBuildInputs = with python3Packages; [
lxml
oauthlib
platformdirs
requests
requests_oauthlib
urllib3
2024-09-19 22:16:11 -04:00
zeroconf
smartinspect # overridden in this python3Packages
];
pythonImportsCheck = [
"spotifywebapipython"
];
}