depot/third_party/nixpkgs/pkgs/development/python-modules/pylyrics/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

37 lines
745 B
Nix

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