nixpkgs/pkgs/development/python-modules/lyricwikia/default.nix
2020-10-27 21:53:24 +01:00

24 lines
674 B
Nix

{ 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;
};
}