python3Packages.lyricwikia: init at 0.1.11

This commit is contained in:
Kierán Meinhardt 2020-10-24 14:10:36 +02:00
parent 558303ba07
commit aa86d488cf
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchPypi, buildPythonPackage, pytestrunner, six, beautifulsoup4, requests, }:
buildPythonPackage rec {
pname = "lyricwikia";
version = "0.1.11";
src = fetchPypi {
inherit pname version;
sha256 = "0l5lkvr3299x79i7skdiggp67rzgax3s00psd1zqkxfysq27jvc8";
};
buildInputs = [ pytestrunner ];
propagatedBuildInputs = [ six beautifulsoup4 requests ];
# upstream has no code tests
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://github.com/enricobacis/lyricwikia";
maintainers = [ maintainers.kmein ];
description = "LyricWikia API for song lyrics";
license = licenses.mit;
platforms = platforms.all;
};
}

View file

@ -3516,6 +3516,8 @@ in {
lxml = callPackage ../development/python-modules/lxml { inherit (pkgs) libxml2 libxslt zlib; };
lyricwikia = callPackage ../development/python-modules/lyricwikia { };
lz4 = self.python-lz4; # alias 2018-12-05
lzstring = callPackage ../development/python-modules/lzstring { };