1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 beautifulsoup4,
6 requests,
7}:
8
9buildPythonPackage rec {
10 pname = "pylyrics";
11 version = "1.1.0";
12 format = "setuptools";
13
14 src = fetchPypi {
15 pname = "PyLyrics";
16 inherit version;
17 extension = "zip";
18 hash = "sha256-xfNujvDtO0h6kkLONMGfloTkGKW7/9XTZ9wdFgS0zQs=";
19 };
20
21 propagatedBuildInputs = [
22 beautifulsoup4
23 requests
24 ];
25
26 pythonImportsCheck = [ "PyLyrics" ];
27
28 # tries to connect to lyrics.wikia.com
29 doCheck = false;
30
31 meta = with lib; {
32 description = "Pythonic Implementation of lyrics.wikia.com for getting lyrics of songs";
33 homepage = "https://github.com/geekpradd/PyLyrics";
34 license = licenses.mit;
35 maintainers = [ ];
36 };
37}