2020-07-19 20:02:03 +01:00
|
|
|
{ stdenv, python3Packages, mopidy }:
|
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-11-11 10:08:25 +00:00
|
|
|
version = "3.54.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-11-11 10:08:25 +00:00
|
|
|
sha256 = "0qnshn77dv7fl6smwnpnbq67mbc1vic9gf85skiqnqy8v8w5829f";
|
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
|
2020-08-29 13:23:55 +01:00
|
|
|
tornado
|
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 ];
|
|
|
|
};
|
|
|
|
}
|