summary refs log tree commit diff
path: root/pkgs/applications/audio/mopidy/somafm.nix
blob: 81c689a343de4ac58e096197e16b7601362377dc (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
{ lib, python3Packages, mopidy }:

python3Packages.buildPythonApplication rec {
  pname = "mopidy-somafm";
  version = "2.0.0";

  src = python3Packages.fetchPypi {
    inherit version;
    pname = "Mopidy-SomaFM";
    sha256 = "1j88rrliys8hqvnb35k1xqw88bvrllcb4rb53lgh82byhscsxlf3";
  };

  propagatedBuildInputs = [
    mopidy
  ];

  doCheck = false;

  meta = with lib; {
    homepage = "https://www.mopidy.com/";
    description = "Mopidy extension for playing music from SomaFM";
    license = licenses.mit;
    maintainers = [ maintainers.nickhu ];
  };
}