2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, pytestrunner, six, beautifulsoup4, requests, }:
|
2020-10-24 13:10:36 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "lyricwikia";
|
|
|
|
version = "0.1.11";
|
2020-10-24 13:14:26 +01:00
|
|
|
|
2020-10-24 13:10:36 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "0l5lkvr3299x79i7skdiggp67rzgax3s00psd1zqkxfysq27jvc8";
|
|
|
|
};
|
2020-10-24 13:14:26 +01:00
|
|
|
|
2020-10-24 13:10:36 +01:00
|
|
|
buildInputs = [ pytestrunner ];
|
|
|
|
propagatedBuildInputs = [ six beautifulsoup4 requests ];
|
|
|
|
# upstream has no code tests
|
|
|
|
doCheck = false;
|
2020-10-24 13:14:26 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-24 13:10:36 +01:00
|
|
|
homepage = "https://github.com/enricobacis/lyricwikia";
|
|
|
|
maintainers = [ maintainers.kmein ];
|
|
|
|
description = "LyricWikia API for song lyrics";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|