python3Packages.lyricwikia: init at 0.1.11
This commit is contained in:
parent
558303ba07
commit
aa86d488cf
20
pkgs/development/python-modules/lyricwikia/default.nix
Normal file
20
pkgs/development/python-modules/lyricwikia/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user