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