lol

swaglyrics: fix dependencies

authored by

Sandro Jäckel and committed by
Martin Weinelt
d6e2f609 4f705210

+5 -8
+5 -8
pkgs/tools/misc/swaglyrics/default.nix
··· 16 16 hash = "sha256-O48T1WsUIVnNQb8gmzSkFFHTOiFOKVSAEYhF9zUqZz0="; 17 17 }; 18 18 19 + postPatch = '' 20 + substituteInPlace setup.py \ 21 + --replace "==" ">=" 22 + ''; 23 + 19 24 propagatedBuildInputs = with python3.pkgs; [ 20 25 beautifulsoup4 21 26 colorama ··· 35 40 ncurses 36 41 ]; 37 42 38 - preConfigure = '' 39 - substituteInPlace setup.py \ 40 - --replace 'beautifulsoup4==4.9.3' 'beautifulsoup4>=4.9.3' \ 41 - --replace 'unidecode==1.2.0' 'unidecode>=1.2.0' \ 42 - --replace 'flask==2.0.1' 'flask>=2.0.1' 43 - ''; 44 - 45 43 preBuild = '' 46 44 export HOME=$(mktemp -d) 47 45 ''; ··· 64 62 homepage = "https://github.com/SwagLyrics/SwagLyrics-For-Spotify"; 65 63 license = licenses.mit; 66 64 maintainers = with maintainers; [ siraben ]; 67 - platforms = platforms.unix; 68 65 }; 69 66 }