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

30 lines
717 B
Nix
Raw Normal View History

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