nixpkgs/pkgs/applications/audio/mopidy/iris.nix
R. RyanTM 03b1e67957 mopidy-iris: 3.21.1 -> 3.21.3 (#42474)
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.3 with grep in /nix/store/qb6067h8y8p8y7kqkmdk308a494milyw-Mopidy-Iris-3.21.3
- directory tree listing: https://gist.github.com/e0c3564e49b2cec4b30d98ec42723bff
- du listing: https://gist.github.com/a127f023f22f9a2abd69c2dd0ff0c71b
2018-06-27 17:05:04 +02:00

35 lines
798 B
Nix

{ stdenv, pythonPackages, mopidy, mopidy-local-images }:
pythonPackages.buildPythonApplication rec {
pname = "Mopidy-Iris";
version = "3.21.3";
src = pythonPackages.fetchPypi {
inherit pname version;
sha256 = "0gp51zz5qr93w0h14m1blmjnlgmilyb15lw2m75varslw1ar7vlg";
};
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 ];
};
}