Unverified Commit 8b6e0210 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #228040 from fabaff/syncedlyrics-bump

python311Packages.syncedlyrics: 0.4.0 -> 0.5.0
parents 4e13ca41 9d1fa577
Loading
Loading
Loading
Loading
+4 −10
Original line number Diff line number Diff line
@@ -3,7 +3,6 @@
, buildPythonPackage
, fetchFromGitHub
, poetry-core
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, rapidfuzz
@@ -12,7 +11,7 @@

buildPythonPackage rec {
  pname = "syncedlyrics";
  version = "0.4.0";
  version = "0.5.0";
  format = "pyproject";

  disabled = pythonOlder "3.7";
@@ -21,7 +20,7 @@ buildPythonPackage rec {
    owner = "rtcq";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-dH9irIah9CdZ9Kv7bIymP1o5ifWEYCiSqegUpu8Y+Tg=";
    hash = "sha256-79dy1f5Pd/JGIpH/71E6IBg+AtR4zgHL4b/GRH1AFp0=";
  };

  nativeBuildInputs = [
@@ -39,18 +38,13 @@ buildPythonPackage rec {
    beautifulsoup4
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];
  # Tests require network access
  doCheck = false;

  pythonImportsCheck = [
    "syncedlyrics"
  ];

  pytestFlagsArray = [
    "test.py::test_all_providers"
  ];

  meta = with lib; {
    description = "Module to get LRC format (synchronized) lyrics";
    homepage = "https://github.com/rtcq/syncedlyrics";