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";
|
2019-06-21 19:51:07 +01:00
|
|
|
version = "3.39.0";
|
2017-07-10 10:18:29 +01:00
|
|
|
|
|
|
|
src = pythonPackages.fetchPypi {
|
2018-02-27 14:33:45 +00:00
|
|
|
inherit pname version;
|
2019-06-21 19:51:07 +01:00
|
|
|
sha256 = "1d2g66gvm7yaz4nbxlh23lj2xfkhi3hsg2k646m1za510f8dzlag";
|
2017-07-10 10:18:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
mopidy
|
|
|
|
mopidy-local-images
|
2018-02-27 14:33:45 +00:00
|
|
|
] ++ (with pythonPackages; [
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|