mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 12:44:20 +00:00
![Ryan Mulligan](/assets/img/avatar_default.png)
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
24 lines
654 B
Nix
24 lines
654 B
Nix
{ stdenv, fetchurl, pythonPackages, mopidy }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
name = "mopidy-spotify-${version}";
|
|
version = "3.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mopidy/mopidy-spotify/archive/v${version}.tar.gz";
|
|
sha256 = "1mh87w4j0ypvsrnax7kkjgfxfpnw3l290jvfzg56b8qlwf20khjl";
|
|
};
|
|
|
|
propagatedBuildInputs = [ mopidy pythonPackages.pyspotify ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.mopidy.com/;
|
|
description = "Mopidy extension for playing music from Spotify";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.rickynils ];
|
|
hydraPlatforms = [];
|
|
};
|
|
}
|