1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 07:04:28 +00:00
nixpkgs/pkgs/applications/audio/mopidy-iris/default.nix

32 lines
741 B
Nix
Raw Normal View History

2017-07-10 10:18:29 +01:00
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
pythonPackages.buildPythonApplication rec {
2018-02-27 14:33:45 +00:00
pname = "Mopidy-Iris";
version = "3.14.2";
2017-07-10 10:18:29 +01:00
src = pythonPackages.fetchPypi {
2018-02-27 14:33:45 +00:00
inherit pname version;
sha256 = "19affzk45wby50gwxwzqgwa7h7618lcs48ngdsa06sd66s8x2fza";
2017-07-10 10:18:29 +01: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 10:18:29 +01:00
meta = with stdenv.lib; {
homepage = https://github.com/jaedb/Iris;
2017-07-10 10:18:29 +01:00
description = "A fully-functional Mopidy web client encompassing Spotify and many other backends";
license = licenses.asl20;
maintainers = [ maintainers.rvolosatovs ];
};
}