summary refs log tree commit diff
path: root/pkgs/applications/audio/mopidy-moped
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/audio/mopidy-moped')
-rw-r--r--pkgs/applications/audio/mopidy-moped/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/applications/audio/mopidy-moped/default.nix b/pkgs/applications/audio/mopidy-moped/default.nix
deleted file mode 100644
index 3754bf763b20..000000000000
--- a/pkgs/applications/audio/mopidy-moped/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ stdenv, pythonPackages, mopidy, glibcLocales }:
-
-pythonPackages.buildPythonApplication rec {
-  pname = "Mopidy-Moped";
-  version = "0.7.1";
-
-  src = pythonPackages.fetchPypi {
-    inherit pname version;
-    sha256 = "15461174037d87af93dd59a236d4275c5abf71cea0670ffff24a7d0399a8a2e4";
-  };
-
-  LC_ALL = "en_US.UTF-8";
-  buildInputs = [ glibcLocales ];
-  propagatedBuildInputs = [ mopidy ];
-
-  # no tests implemented
-  doCheck = false;
-
-  meta = with stdenv.lib; {
-    homepage = https://github.com/martijnboland/moped;
-    description = "A web client for Mopidy";
-    license = licenses.mit;
-    maintainers = [ maintainers.rickynils ];
-    hydraPlatforms = [];
-  };
-}