2017-07-10 10:18:29 +01:00
|
|
|
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
2018-02-27 14:33:45 +00:00
|
|
|
pname = "Mopidy-Iris";
|
2018-09-20 17:22:20 +01:00
|
|
|
version = "3.26.0";
|
2017-07-10 10:18:29 +01:00
|
|
|
|
|
|
|
src = pythonPackages.fetchPypi {
|
2018-02-27 14:33:45 +00:00
|
|
|
inherit pname version;
|
2018-09-20 17:22:20 +01:00
|
|
|
sha256 = "0yd52dlm0qh3ycqxhxhiw52111wa87b7wlxbwdj5p9an5yqnkkvy";
|
2017-07-10 10:18:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
mopidy
|
|
|
|
mopidy-local-images
|
2018-02-27 14:33:45 +00:00
|
|
|
] ++ (with pythonPackages; [
|
|
|
|
configobj
|
|
|
|
pylast
|
|
|
|
spotipy
|
|
|
|
raven
|
2018-04-16 21:44:21 +01:00
|
|
|
tornado
|
2018-02-27 14:33:45 +00:00
|
|
|
]);
|
|
|
|
|
2018-04-16 21:44:21 +01:00
|
|
|
postPatch = "sed -i /tornado/d setup.py";
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|