1{ lib, fetchPypi, buildPythonPackage, pytest-runner, six, beautifulsoup4, requests, }:
2buildPythonPackage rec {
3 pname = "lyricwikia";
4 version = "0.1.11";
5
6 src = fetchPypi {
7 inherit pname version;
8 sha256 = "0l5lkvr3299x79i7skdiggp67rzgax3s00psd1zqkxfysq27jvc8";
9 };
10
11 buildInputs = [ pytest-runner ];
12 propagatedBuildInputs = [ six beautifulsoup4 requests ];
13 # upstream has no code tests
14 doCheck = false;
15
16 meta = with lib; {
17 homepage = "https://github.com/enricobacis/lyricwikia";
18 maintainers = [ maintainers.kmein ];
19 description = "LyricWikia API for song lyrics";
20 license = licenses.mit;
21 platforms = platforms.all;
22 };
23}