summary refs log tree commit diff
path: root/pkgs/development/python-modules/lyricwikia/default.nix
blob: 19bb14419a4f0ce0f45e54c60e3f497ee77f2903 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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;
  };
}