Files
.hive/modules/tools/spotify-shortcuts/_derivation.nix
2026-03-29 17:10:57 +02:00

10 lines
236 B
Nix

{python3Packages}:
with python3Packages;
buildPythonApplication {
name = "spotify-shortcuts";
propagatedBuildInputs = [spotipy pyxdg desktop-notifier];
pyproject = true;
build-system = [setuptools];
src = ./.;
}