My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pylyrics/default.nix

30 lines
730 B

{ lib, buildPythonPackage, fetchPypi, beautifulsoup4, requests }:
buildPythonPackage rec {
pname = "pylyrics";
version = "1.1.0";
src = fetchPypi {
pname = "PyLyrics";
inherit version;
extension = "zip";
sha256 = "sha256-xfNujvDtO0h6kkLONMGfloTkGKW7/9XTZ9wdFgS0zQs=";
};
propagatedBuildInputs = [
beautifulsoup4
requests
];
pythonImportsCheck = [ "PyLyrics" ];
# tries to connect to lyrics.wikia.com
doCheck = false;
meta = with lib; {
description = "A Pythonic Implementation of lyrics.wikia.com for getting lyrics of songs ";
homepage = "https://github.com/geekpradd/PyLyrics";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}