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-03-15 19:50:59 +00:00
|
|
|
version = "3.46.0";
|
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-03-15 19:50:59 +00:00
|
|
|
sha256 = "0c7b6zbcj4bq5qsxvhjwqclrl1k2hs3wb50pfjbw7gs7m3gm2b7d";
|
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; {
|
2020-04-01 02:11:51 +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 ];
|
|
|
|
};
|
|
|
|
}
|