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

31 lines
735 B
Nix
Raw Normal View History

2017-07-10 11:18:29 +02:00
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
pythonPackages.buildPythonApplication rec {
2018-02-27 15:33:45 +01:00
pname = "Mopidy-Iris";
2019-06-09 11:43:04 +02:00
version = "3.38.0";
2017-07-10 11:18:29 +02:00
src = pythonPackages.fetchPypi {
2018-02-27 15:33:45 +01:00
inherit pname version;
2019-06-09 11:43:04 +02:00
sha256 = "0w86g037jdihh6a16x7y82qk8yk30frkj23k9axcj9fjyp30r0x5";
2017-07-10 11:18:29 +02:00
};
propagatedBuildInputs = [
mopidy
mopidy-local-images
2018-02-27 15:33:45 +01:00
] ++ (with pythonPackages; [
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 ];
};
}