mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
python39Packages.pylyrics: init at 1.1.0
This commit is contained in:
parent
137f19d1d4
commit
7d23657cf3
30
pkgs/development/python-modules/pylyrics/default.nix
Normal file
30
pkgs/development/python-modules/pylyrics/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user