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