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