mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
05b4fe20a7
mopidy: 2.3.1 -> 3.0.1 mopidy-iris: 3.43.0 -> 3.44.0 mopidy-spotify: 3.1.0 -> 4.0.1 pykka: 1.2.0 -> 2.0.1
24 lines
624 B
Nix
24 lines
624 B
Nix
{ stdenv, fetchurl, python3Packages, mopidy }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "mopidy-spotify";
|
|
version = "4.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mopidy/mopidy-spotify/archive/v${version}.tar.gz";
|
|
sha256 = "1ac8r8050i5r3ag1hlblbcyskqjqz7wgamndbzsmw52qi6hxk44f";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mopidy python3Packages.pyspotify ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.mopidy.com/;
|
|
description = "Mopidy extension for playing music from Spotify";
|
|
license = licenses.asl20;
|
|
maintainers = [];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|