depot/third_party/nixpkgs/pkgs/development/python-modules/lyricwikia/default.nix
Default email 21cecf6002 Project import generated by Copybara.
GitOrigin-RevId: dd14e5d78e90a2ccd6007e569820de9b4861a6c2
2021-07-24 08:14:16 -04:00

23 lines
666 B
Nix

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