depot/third_party/nixpkgs/pkgs/development/python-modules/pylyrics/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

37 lines
727 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 = [ ];
};
}