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

32 lines
753 B
Nix
Raw Normal View History

2017-07-10 09:18:29 +00:00
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
pythonPackages.buildPythonApplication rec {
2018-02-27 14:33:45 +00:00
pname = "Mopidy-Iris";
2018-02-27 16:29:39 +00:00
version = "3.14.0";
2017-07-10 09:18:29 +00:00
src = pythonPackages.fetchPypi {
2018-02-27 14:33:45 +00:00
inherit pname version;
2018-02-27 16:29:39 +00:00
sha256 = "2c0ec5138e554e91d299ac72a7049bc00d77770a08c16c17e1a9df7f8ef42feb";
2017-07-10 09:18:29 +00:00
};
propagatedBuildInputs = [
mopidy
mopidy-local-images
2018-02-27 14:33:45 +00:00
] ++ (with pythonPackages; [
configobj
pylast
spotipy
raven
]);
# no tests implemented
doCheck = false;
2017-07-10 09:18:29 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/jaedb/Iris;
2017-07-10 09:18:29 +00:00
description = "A fully-functional Mopidy web client encompassing Spotify and many other backends";
license = licenses.asl20;
maintainers = [ maintainers.rvolosatovs ];
};
}