lol
0
fork

Configure Feed

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

at v192 23 lines 649 B view raw
1{ stdenv, fetchurl, pythonPackages, mopidy }: 2 3pythonPackages.buildPythonPackage rec { 4 name = "mopidy-spotify-${version}"; 5 version = "1.4.0"; 6 7 src = fetchurl { 8 url = "https://github.com/mopidy/mopidy-spotify/archive/v${version}.tar.gz"; 9 sha256 = "0cf97z9vnnp5l77xhwvmkbkqgpj5gwnm1pipiy66lbk4gn6va4z4"; 10 }; 11 12 propagatedBuildInputs = [ mopidy pythonPackages.pyspotify ]; 13 14 doCheck = false; 15 16 meta = with stdenv.lib; { 17 homepage = http://www.mopidy.com/; 18 description = "Mopidy extension for playing music from Spotify"; 19 license = licenses.asl20; 20 maintainers = [ maintainers.rickynils ]; 21 hydraPlatforms = []; 22 }; 23}