Merge pull request #228040 from fabaff/syncedlyrics-bump

python311Packages.syncedlyrics: 0.4.0 -> 0.5.0

authored by Mario Rodas and committed by GitHub 8b6e0210 4e13ca41

+4 -10
+4 -10
pkgs/development/python-modules/syncedlyrics/default.nix
··· 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 5 , poetry-core 6 - , pytestCheckHook 7 6 , pythonOlder 8 7 , pythonRelaxDepsHook 9 8 , rapidfuzz ··· 12 11 13 12 buildPythonPackage rec { 14 13 pname = "syncedlyrics"; 15 - version = "0.4.0"; 14 + version = "0.5.0"; 16 15 format = "pyproject"; 17 16 18 17 disabled = pythonOlder "3.7"; ··· 21 20 owner = "rtcq"; 22 21 repo = pname; 23 22 rev = "refs/tags/v${version}"; 24 - hash = "sha256-dH9irIah9CdZ9Kv7bIymP1o5ifWEYCiSqegUpu8Y+Tg="; 23 + hash = "sha256-79dy1f5Pd/JGIpH/71E6IBg+AtR4zgHL4b/GRH1AFp0="; 25 24 }; 26 25 27 26 nativeBuildInputs = [ ··· 39 38 beautifulsoup4 40 39 ]; 41 40 42 - nativeCheckInputs = [ 43 - pytestCheckHook 44 - ]; 41 + # Tests require network access 42 + doCheck = false; 45 43 46 44 pythonImportsCheck = [ 47 45 "syncedlyrics" 48 - ]; 49 - 50 - pytestFlagsArray = [ 51 - "test.py::test_all_providers" 52 46 ]; 53 47 54 48 meta = with lib; {