summary refs log tree commit diff
path: root/pkgs/applications/audio/mopidy/moped.nix
blob: ffd9af76d173bd27338b12e70fa926a52975af05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ 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 = [];
    hydraPlatforms = [];
  };
}