about summary refs log tree commit diff
path: root/pkgs/applications/audio
diff options
context:
space:
mode:
authorRoman Volosatovs <rvolosatovs@riseup.net>2017-06-11 14:02:02 +0200
committerRoman Volosatovs <rvolosatovs@riseup.net>2017-06-25 00:26:02 +0200
commit4ebaed854f9b112d772050ce58dafc39fddff818 (patch)
tree0003f84c69edb4896af07e5f2da0f8991e497b32 /pkgs/applications/audio
parent90f85a2de5504bdd0a5f6c02ecb7f2989fc066e8 (diff)
downloadnixlib-4ebaed854f9b112d772050ce58dafc39fddff818.tar
nixlib-4ebaed854f9b112d772050ce58dafc39fddff818.tar.gz
nixlib-4ebaed854f9b112d772050ce58dafc39fddff818.tar.bz2
nixlib-4ebaed854f9b112d772050ce58dafc39fddff818.tar.lz
nixlib-4ebaed854f9b112d772050ce58dafc39fddff818.tar.xz
nixlib-4ebaed854f9b112d772050ce58dafc39fddff818.tar.zst
nixlib-4ebaed854f9b112d772050ce58dafc39fddff818.zip
mopidy-local-images: init at 1.0.0
Diffstat (limited to 'pkgs/applications/audio')
-rw-r--r--pkgs/applications/audio/mopidy-local-images/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/applications/audio/mopidy-local-images/default.nix b/pkgs/applications/audio/mopidy-local-images/default.nix
new file mode 100644
index 000000000000..e9538273568a
--- /dev/null
+++ b/pkgs/applications/audio/mopidy-local-images/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, fetchFromGitHub, pythonPackages, mopidy }:
+
+pythonPackages.buildPythonApplication rec {
+  name = "mopidy-local-images-${version}";
+
+  version = "1.0.0";
+
+  src = fetchFromGitHub {
+    owner = "mopidy";
+    repo = "mopidy-local-images";
+    rev = "v${version}";
+    sha256 = "0gdqxws0jish50mmi57mlqcs659wrllzv00czl18niz94vzvyc0d";
+  };
+
+  propagatedBuildInputs = [
+    mopidy
+    pythonPackages.pykka
+    pythonPackages.uritools
+  ];
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/mopidy/mopidy-local-images";
+    description = "Mopidy local library proxy extension for handling embedded album art";
+    license = licenses.asl20;
+    maintainers = [ maintainers.rvolosatovs ];
+  };
+}