0da8196d1f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/Mopidy-Iris/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 3.21.1 with grep in /nix/store/ydhbxhldy8a9n64r8if9zy4ricl4in20-Mopidy-Iris-3.21.1 - directory tree listing: https://gist.github.com/3ad4fbaeff603abf3078d8371547dbb4 - du listing: https://gist.github.com/bcb4096a10cef861d8bcf1f384c7ae3e
35 lines
798 B
Nix
35 lines
798 B
Nix
{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "Mopidy-Iris";
|
|
version = "3.21.1";
|
|
|
|
src = pythonPackages.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "10d97rkqk5qbrninrahn0gr90yd47ivw2zafb24sp7a2g0mm07md";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
mopidy
|
|
mopidy-local-images
|
|
] ++ (with pythonPackages; [
|
|
configobj
|
|
pylast
|
|
spotipy
|
|
raven
|
|
tornado
|
|
]);
|
|
|
|
postPatch = "sed -i /tornado/d setup.py";
|
|
|
|
# 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 ];
|
|
};
|
|
}
|