nixpkgs/pkgs/applications/audio/mopidy/iris.nix

30 lines
715 B
Nix
Raw Normal View History

{ stdenv, python3Packages, mopidy, mopidy-local-images }:
2017-07-10 02:18:29 -07:00
python3Packages.buildPythonApplication rec {
2018-02-27 06:33:45 -08:00
pname = "Mopidy-Iris";
version = "3.44.0";
2017-07-10 02:18:29 -07:00
src = python3Packages.fetchPypi {
2018-02-27 06:33:45 -08:00
inherit pname version;
sha256 = "0gap0cyw6sfb4487i1x220rr9fbsz6xyw68l15ar0vfll0zv0760";
2017-07-10 02:18:29 -07:00
};
propagatedBuildInputs = [
mopidy
] ++ (with python3Packages; [
2018-02-27 06:33:45 -08:00
configobj
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; {
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 ];
};
}