23 lines
649 B
Nix
23 lines
649 B
Nix
{ stdenv, fetchurl, pythonPackages, mopidy }:
|
|
|
|
pythonPackages.buildPythonPackage rec {
|
|
name = "mopidy-spotify-${version}";
|
|
version = "1.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mopidy/mopidy-spotify/archive/v${version}.tar.gz";
|
|
sha256 = "0cf97z9vnnp5l77xhwvmkbkqgpj5gwnm1pipiy66lbk4gn6va4z4";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mopidy pythonPackages.pyspotify ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.mopidy.com/;
|
|
description = "Mopidy extension for playing music from Spotify";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.rickynils ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|