python39Packages.pylyrics: init at 1.1.0

This commit is contained in:
Sandro Jäckel 2021-09-04 23:43:17 +02:00
parent 137f19d1d4
commit 7d23657cf3
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,30 @@
{ 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 ];
};
}

View File

@ -6305,6 +6305,8 @@ in {
pylutron-caseta = callPackage ../development/python-modules/pylutron-caseta { };
pylyrics = callPackage ../development/python-modules/pylyrics { };
pylxd = callPackage ../development/python-modules/pylxd { };
pylzma = callPackage ../development/python-modules/pylzma { };