swaglyrics: init at 1.2.2
This commit is contained in:
parent
9b1f2a0e7f
commit
3204e87efa
2 changed files with 47 additions and 0 deletions
45
pkgs/tools/misc/swaglyrics/default.nix
Normal file
45
pkgs/tools/misc/swaglyrics/default.nix
Normal file
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue