about summary refs log tree commit diff
path: root/pkgs/applications/audio/mopidy-spotify-tunigo
diff options
context:
space:
mode:
authorSpencer Whitt <me@swhitt.me>2015-12-14 21:22:04 -0500
committerSpencer Whitt <me@swhitt.me>2015-12-15 22:38:15 -0500
commit4446b078fcb75d6cae991350d8c8008c2b92251e (patch)
tree17153175685b1fdd8f84eb926ec976e59a11ba70 /pkgs/applications/audio/mopidy-spotify-tunigo
parent1f644d127a50553c55d06399280d65a976f28ca7 (diff)
downloadnixlib-4446b078fcb75d6cae991350d8c8008c2b92251e.tar
nixlib-4446b078fcb75d6cae991350d8c8008c2b92251e.tar.gz
nixlib-4446b078fcb75d6cae991350d8c8008c2b92251e.tar.bz2
nixlib-4446b078fcb75d6cae991350d8c8008c2b92251e.tar.lz
nixlib-4446b078fcb75d6cae991350d8c8008c2b92251e.tar.xz
nixlib-4446b078fcb75d6cae991350d8c8008c2b92251e.tar.zst
nixlib-4446b078fcb75d6cae991350d8c8008c2b92251e.zip
mopidy-spotify-tunigo: init at 0.2.1
Diffstat (limited to 'pkgs/applications/audio/mopidy-spotify-tunigo')
-rw-r--r--pkgs/applications/audio/mopidy-spotify-tunigo/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix b/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix
new file mode 100644
index 000000000000..ab07b0f1f68e
--- /dev/null
+++ b/pkgs/applications/audio/mopidy-spotify-tunigo/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchFromGitHub, pythonPackages, mopidy, mopidy-spotify }:
+
+pythonPackages.buildPythonPackage rec {
+  name = "mopidy-spotify-tunigo-${version}";
+
+  version = "0.2.1";
+
+  src = fetchFromGitHub {
+    owner = "trygveaa";
+    repo = "mopidy-spotify-tunigo";
+    rev = "v${version}";
+    sha256 = "0827wghbgrscncnshz30l97hgg0g5bsnm0ad8596zh7cai0ibss0";
+  };
+
+  propagatedBuildInputs = [ mopidy mopidy-spotify pythonPackages.tunigo ];
+
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "Mopidy extension for providing the browse feature of Spotify";
+    license = licenses.asl20;
+    maintainers = [ maintainers.spwhitt ];
+  };
+}