2017-07-10 10:18:29 +01:00
|
|
|
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
|
|
|
|
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
|
|
name = "mopidy-iris-${version}";
|
2018-02-27 14:17:50 +00:00
|
|
|
version = "3.13.0";
|
2017-07-10 10:18:29 +01:00
|
|
|
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
|
|
inherit version;
|
|
|
|
pname = "Mopidy-Iris";
|
2018-02-27 14:17:50 +00:00
|
|
|
sha256 = "1x6b3868ikbacrhsyrbpij2f4vbfqmdh39210m4d84y7rw7j8ifc";
|
2017-07-10 10:18:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
|
|
|
mopidy
|
|
|
|
mopidy-local-images
|
|
|
|
pythonPackages.configobj
|
|
|
|
pythonPackages.pylast
|
|
|
|
pythonPackages.spotipy
|
2017-09-27 10:51:20 +01:00
|
|
|
pythonPackages.raven
|
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 ];
|
|
|
|
};
|
|
|
|
}
|