-
-
Notifications
You must be signed in to change notification settings - Fork 14.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mopidy-spotify: re-init at unstable-2023-04-21
- Loading branch information
1 parent
4f8d022
commit 77f0d20
Showing
4 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ lib, fetchFromGitHub, pythonPackages, mopidy }: | ||
|
||
pythonPackages.buildPythonApplication rec { | ||
pname = "mopidy-spotify"; | ||
version = "unstable-2023-04-21"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "mopidy"; | ||
repo = "mopidy-spotify"; | ||
rev = "984151ac96c5f9c35892055bff20cc11f46092d5"; | ||
hash = "sha256-4e9Aj0AOFR4/FK54gr1ZyPt0nYZDMrMetV4FPtBxapU="; | ||
}; | ||
|
||
propagatedBuildInputs = [ | ||
mopidy | ||
pythonPackages.responses | ||
]; | ||
|
||
nativeBuildInputs = [ | ||
pythonPackages.pytestCheckHook | ||
]; | ||
|
||
pythonImportsCheck = [ "mopidy_spotify" ]; | ||
|
||
meta = with lib; { | ||
homepage = "https://github.com/mopidy/mopidy-spotify"; | ||
description = "Mopidy extension for playing music from Spotify"; | ||
license = licenses.asl20; | ||
maintainers = with maintainers; [ lilyinstarlight ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters