nixpkgs/pkgs/applications/audio/mopidy/iris.nix
Kevin Rauscher 05b4fe20a7 mopidy: update to python3
mopidy: 2.3.1 -> 3.0.1
mopidy-iris: 3.43.0 -> 3.44.0
mopidy-spotify: 3.1.0 -> 4.0.1
pykka: 1.2.0 -> 2.0.1
2020-02-10 09:53:13 +01:00

30 lines
715 B
Nix

{ stdenv, python3Packages, mopidy, mopidy-local-images }:
python3Packages.buildPythonApplication rec {
pname = "Mopidy-Iris";
version = "3.44.0";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "0gap0cyw6sfb4487i1x220rr9fbsz6xyw68l15ar0vfll0zv0760";
};
propagatedBuildInputs = [
mopidy
] ++ (with python3Packages; [
configobj
requests
tornado_4
]);
# no tests implemented
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/jaedb/Iris;
description = "A fully-functional Mopidy web client encompassing Spotify and many other backends";
license = licenses.asl20;
maintainers = [ maintainers.rvolosatovs ];
};
}