2020-02-10 00:14:15 -08:00
|
|
|
{ stdenv, python3Packages, mopidy, mopidy-local-images }:
|
2017-07-10 02:18:29 -07:00
|
|
|
|
2020-02-10 00:14:15 -08:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-02-27 06:33:45 -08:00
|
|
|
pname = "Mopidy-Iris";
|
2020-07-05 11:11:22 -07:00
|
|
|
version = "3.50.0";
|
2017-07-10 02:18:29 -07:00
|
|
|
|
2020-02-10 00:14:15 -08:00
|
|
|
src = python3Packages.fetchPypi {
|
2018-02-27 06:33:45 -08:00
|
|
|
inherit pname version;
|
2020-07-05 11:11:22 -07:00
|
|
|
sha256 = "04miwf0dqb8jir9g7xkfnn3l62bdn74ap03kqzz2v3byg64f1p0g";
|
2017-07-10 02:18:29 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
mopidy
|
2020-02-10 00:14:15 -08:00
|
|
|
] ++ (with python3Packages; [
|
2018-02-27 06:33:45 -08:00
|
|
|
configobj
|
2019-03-19 14:48:27 -07:00
|
|
|
requests
|
2020-08-29 05:23:55 -07:00
|
|
|
tornado
|
2018-02-27 06:33:45 -08:00
|
|
|
]);
|
|
|
|
|
|
|
|
# no tests implemented
|
|
|
|
doCheck = false;
|
2017-07-10 02:18:29 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/jaedb/Iris";
|
2017-07-10 02:18:29 -07:00
|
|
|
description = "A fully-functional Mopidy web client encompassing Spotify and many other backends";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.rvolosatovs ];
|
|
|
|
};
|
|
|
|
}
|