about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/swspotify/default.nix
blob: df2c00ad7c0f9e552d9f1bb2470b82ac385c510d (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
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, requests
, pytestCheckHook, flask, flask-cors, dbus-python, mock, isPy27 }:

buildPythonPackage rec {
  pname = "SwSpotify";
  version = "1.2.2";
  disabled = isPy27;

  src = fetchFromGitHub {
    owner = "SwagLyrics";
    repo = "SwSpotify";
    rev = "v${version}";
    sha256 = "sha256-571knnY8LegIbqyPeKUfl+d0suTWAMQHYLN7edKFNdI=";
  };

  propagatedBuildInputs = [
    requests flask flask-cors dbus-python
  ];

  postPatch = ''
    substituteInPlace setup.py \
      --replace 'flask==2.0.1' 'flask'
  '';

  doCheck = !stdenv.isDarwin;

  checkPhase = ''
    pytest tests/test_spotify.py::${if stdenv.isDarwin then "DarwinTests" else "LinuxTests"}
  '';

  checkInputs = [ pytestCheckHook mock ];

  pythonImportsCheck = [ "SwSpotify" ];

  meta = with lib; {
    homepage = "https://github.com/SwagLyrics/SwSpotify";
    description = "Library to get the currently playing song and artist from Spotify";
    license = licenses.mit;
    maintainers = with maintainers; [ siraben ];
    platforms = platforms.unix;
  };
}