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