Skip to content

Commit

Permalink
swaglyrics: init at 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
siraben authored and Jon committed Oct 11, 2020
1 parent 9b1f2a0 commit 3204e87
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
45 changes: 45 additions & 0 deletions pkgs/tools/misc/swaglyrics/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{ 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'
'';

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 stdenv.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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23514,6 +23514,8 @@ in

sunvox = callPackage ../applications/audio/sunvox { };

swaglyrics = callPackage ../tools/misc/swaglyrics { };

swh_lv2 = callPackage ../applications/audio/swh-lv2 { };

swift-im = libsForQt514.callPackage ../applications/networking/instant-messengers/swift-im {
Expand Down

0 comments on commit 3204e87

Please sign in to comment.