Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / lyricwikia / default.nix
bloba5ea55c39cf58e74401b3fba9bde29a03097a730
1 { lib, fetchPypi, buildPythonPackage, pytestrunner, six, beautifulsoup4, requests, }:
2 buildPythonPackage rec {
3   pname = "lyricwikia";
4   version = "0.1.11";
6   src = fetchPypi {
7     inherit pname version;
8     sha256 = "0l5lkvr3299x79i7skdiggp67rzgax3s00psd1zqkxfysq27jvc8";
9   };
11   buildInputs = [ pytestrunner ];
12   propagatedBuildInputs = [ six beautifulsoup4 requests ];
13   # upstream has no code tests
14   doCheck = false;
16   meta = with lib; {
17     homepage = "https://github.com/enricobacis/lyricwikia";
18     maintainers = [ maintainers.kmein ];
19     description = "LyricWikia API for song lyrics";
20     license = licenses.mit;
21     platforms = platforms.all;
22   };