summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyspotify/default.nix
blob: ae7e7468db957c4ec68e7e8741f629cd39fedeee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, cffi
, libspotify
}:

buildPythonPackage rec {
  pname = "pyspotify";
  version = "2.1.3";

  src = fetchFromGitHub {
    owner = "mopidy";
    repo = "pyspotify";
    rev = "v${version}";
    sha256 = "sha256-CjIRwSlR5HPOJ9tp7lrdcDPiKH3p/PxvEJ8sqVD5s3Q=";
  };

  propagatedBuildInputs = [ cffi ];
  buildInputs = [ libspotify ];

  # python zip complains about old timestamps
  preConfigure = ''
    find -print0 | xargs -0 touch
  '';

  postInstall = lib.optionalString stdenv.isDarwin ''
    find "$out" -name _spotify.so -exec \
        install_name_tool -change \
        @loader_path/../Frameworks/libspotify.framework/libspotify \
        ${libspotify}/lib/libspotify.dylib \
        {} \;
  '';

  # There are no tests
  doCheck = false;

  meta = with lib; {
    homepage = "http://pyspotify.mopidy.com";
    description = "A Python interface to Spotify’s online music streaming service";
    license = licenses.unfree;
    maintainers = with maintainers; [ lovek323 ];
  };
}