30 lines
684 B
Nix
30 lines
684 B
Nix
{ lib, python3Packages, mopidy }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "Mopidy-Iris";
|
|
version = "3.58.0";
|
|
|
|
src = python3Packages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1bsmc4p7b6v4mm8fi9zsy0knzdccnz1dc6ckrdr18kw2ji0hiyx2";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mopidy
|
|
] ++ (with python3Packages; [
|
|
configobj
|
|
requests
|
|
tornado
|
|
]);
|
|
|
|
# no tests implemented
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/jaedb/Iris";
|
|
description = "A fully-functional Mopidy web client encompassing Spotify and many other backends";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.rvolosatovs ];
|
|
};
|
|
}
|