Loading pkgs/development/python-modules/syncedlyrics/default.nix 0 → 100644 +55 −0 Original line number Diff line number Diff line { lib , beautifulsoup4 , buildPythonPackage , fetchFromGitHub , poetry-core , pytestCheckHook , pythonOlder , rapidfuzz , requests }: buildPythonPackage rec { pname = "syncedlyrics"; version = "0.4.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "rtcq"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-dH9irIah9CdZ9Kv7bIymP1o5ifWEYCiSqegUpu8Y+Tg="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ requests rapidfuzz beautifulsoup4 ]; nativeCheckInputs = [ pytestCheckHook ]; 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"; changelog = "https://github.com/rtcq/syncedlyrics/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; } pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11248,6 +11248,8 @@ self: super: with self; { sympy = callPackage ../development/python-modules/sympy { }; syncedlyrics = callPackage ../development/python-modules/syncedlyrics { }; syncer = callPackage ../development/python-modules/syncer { }; synergy = callPackage ../development/python-modules/synergy { }; Loading Loading
pkgs/development/python-modules/syncedlyrics/default.nix 0 → 100644 +55 −0 Original line number Diff line number Diff line { lib , beautifulsoup4 , buildPythonPackage , fetchFromGitHub , poetry-core , pytestCheckHook , pythonOlder , rapidfuzz , requests }: buildPythonPackage rec { pname = "syncedlyrics"; version = "0.4.0"; format = "pyproject"; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "rtcq"; repo = pname; rev = "refs/tags/v${version}"; hash = "sha256-dH9irIah9CdZ9Kv7bIymP1o5ifWEYCiSqegUpu8Y+Tg="; }; nativeBuildInputs = [ poetry-core ]; propagatedBuildInputs = [ requests rapidfuzz beautifulsoup4 ]; nativeCheckInputs = [ pytestCheckHook ]; 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"; changelog = "https://github.com/rtcq/syncedlyrics/releases/tag/v${version}"; license = licenses.mit; maintainers = with maintainers; [ fab ]; }; }
pkgs/top-level/python-packages.nix +2 −0 Original line number Diff line number Diff line Loading @@ -11248,6 +11248,8 @@ self: super: with self; { sympy = callPackage ../development/python-modules/sympy { }; syncedlyrics = callPackage ../development/python-modules/syncedlyrics { }; syncer = callPackage ../development/python-modules/syncer { }; synergy = callPackage ../development/python-modules/synergy { }; Loading