mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 18:42:15 +00:00
33fa93f4ca
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 3.14.2 with grep in /nix/store/anzim7y47xa3m530qzq91n9wl8ys1kk2-Mopidy-Iris-3.14.2 - directory tree listing: https://gist.github.com/96a0fc1d9812e5c4e6659fd37c7b21c6
32 lines
741 B
Nix
32 lines
741 B
Nix
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "Mopidy-Iris";
|
|
version = "3.14.2";
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "19affzk45wby50gwxwzqgwa7h7618lcs48ngdsa06sd66s8x2fza";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mopidy
|
|
mopidy-local-images
|
|
] ++ (with pythonPackages; [
|
|
configobj
|
|
pylast
|
|
spotipy
|
|
raven
|
|
]);
|
|
|
|
# no tests implemented
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/jaedb/Iris;
|
|
description = "A fully-functional Mopidy web client encompassing Spotify and many other backends";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.rvolosatovs ];
|
|
};
|
|
}
|