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

35 lines
800 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-02-19 20:03:52 +01:00
version = "3.32.5";
2017-07-10 11:18:29 +02:00
src = pythonPackages.fetchPypi {
2018-02-27 15:33:45 +01:00
inherit pname version;
2019-02-19 20:03:52 +01:00
sha256 = "0vs8x26zcakk6c31sc774h2lcdw3syp236vyymmx1jnfsh1jaqpn";
2017-07-10 11:18:29 +02:00
};
propagatedBuildInputs = [
mopidy
mopidy-local-images
2018-02-27 15:33:45 +01:00
] ++ (with pythonPackages; [
configobj
pylast
spotipy
raven
2018-11-26 20:04:11 +01:00
tornado_4
2018-02-27 15:33:45 +01:00
]);
postPatch = "sed -i /tornado/d setup.py";
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 ];
};
}