summary refs log tree commit diff
path: root/pkgs/tools/misc/swaglyrics/default.nix
blob: c24b12f953926a6b8e3249dad8c70b080cb16c3c (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
46
47
{ stdenv, lib, python3, fetchFromGitHub, ncurses }:

python3.pkgs.buildPythonApplication rec {
  pname = "swaglyrics";
  version = "1.2.2";

  src = fetchFromGitHub {
    owner = "SwagLyrics";
    repo = "SwagLyrics-For-Spotify";
    rev = "v${version}";
    sha256 = "1dwj9fpyhqqpm2z3imp8hfribkzxya891shh77yg77rc2xghp7mh";
  };

  propagatedBuildInputs = with python3.pkgs; [
    unidecode colorama beautifulsoup4 flask requests swspotify
  ];

  preConfigure = ''
    substituteInPlace setup.py \
      --replace 'requests>=2.24.0' 'requests~=2.23' \
      --replace 'beautifulsoup4==4.9.1' 'beautifulsoup4~=4.9' \
      --replace 'colorama==0.4.3' 'colorama~=0.4'
  '';

  preBuild = "export HOME=$NIX_BUILD_TOP";

  # disable tests which touch network
  disabledTests = [
     "test_database_for_unsupported_song"
     "test_that_lyrics_works_for_unsupported_songs"
     "test_that_get_lyrics_works"
     "test_lyrics_are_shown_in_tab"
     "test_songchanged_can_raise_songplaying"
  ];

  checkInputs = with python3.pkgs;
    [ blinker swspotify pytestCheckHook flask mock flask_testing ]
    ++ [ ncurses ];

  meta = with lib; {
    description = "Lyrics fetcher for currently playing Spotify song";
    homepage = "https://github.com/SwagLyrics/SwagLyrics-For-Spotify";
    license = licenses.mit;
    maintainers = with maintainers; [ siraben ];
    platforms = lib.platforms.linux;
  };
}