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

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

  src = fetchFromGitHub {
    owner = "SwagLyrics";
    repo = "SwSpotify";
    rev = "v${version}";
    sha256 = "0jxcvy8lw8kpjbl4q6mi11164pvi0w9m9p76bxj2m7i7s5p4dxd4";
  };

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

  preConfigure = ''
    substituteInPlace setup.py \
      --replace 'requests>=2.24.0' 'requests~=2.23' \
      --replace 'flask-cors==3.0.8' 'flask-cors'
  '';

  checkPhase = ''
    pytest tests/test_spotify.py::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 = lib.platforms.linux;
  };
}