lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #35853 from ryantm/auto-update/mopidy-iris-3.12.4-to-3.13.0

mopidy-iris: 3.12.4 -> 3.14.0

authored by

Robert Schütz and committed by
GitHub
6d54123c 28129665

+13 -10
+13 -10
pkgs/applications/audio/mopidy-iris/default.nix
··· 1 1 { stdenv, pythonPackages, mopidy, mopidy-local-images }: 2 2 3 3 pythonPackages.buildPythonApplication rec { 4 - name = "mopidy-iris-${version}"; 5 - version = "3.12.4"; 4 + pname = "Mopidy-Iris"; 5 + version = "3.14.0"; 6 6 7 7 src = pythonPackages.fetchPypi { 8 - inherit version; 9 - pname = "Mopidy-Iris"; 10 - sha256 = "0k64rfnp5b4rybb396zzx12wnnca43a8l1s6s6dr6cflgk9aws87"; 8 + inherit pname version; 9 + sha256 = "2c0ec5138e554e91d299ac72a7049bc00d77770a08c16c17e1a9df7f8ef42feb"; 11 10 }; 12 11 13 12 propagatedBuildInputs = [ 14 13 mopidy 15 14 mopidy-local-images 16 - pythonPackages.configobj 17 - pythonPackages.pylast 18 - pythonPackages.spotipy 19 - pythonPackages.raven 20 - ]; 15 + ] ++ (with pythonPackages; [ 16 + configobj 17 + pylast 18 + spotipy 19 + raven 20 + ]); 21 + 22 + # no tests implemented 23 + doCheck = false; 21 24 22 25 meta = with stdenv.lib; { 23 26 homepage = https://github.com/jaedb/Iris;