nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

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 ··· 11 12 12 13 buildPythonPackage rec { 13 14 pname = "syncedlyrics"; 14 - version = "0.4.0"; 15 + version = "0.5.0"; 15 16 format = "pyproject"; 16 17 17 18 disabled = pythonOlder "3.7"; ··· 20 21 owner = "rtcq"; 21 22 repo = pname; 22 23 rev = "refs/tags/v${version}"; 23 - hash = "sha256-dH9irIah9CdZ9Kv7bIymP1o5ifWEYCiSqegUpu8Y+Tg="; 24 + hash = "sha256-79dy1f5Pd/JGIpH/71E6IBg+AtR4zgHL4b/GRH1AFp0="; 24 25 }; 25 26 26 27 nativeBuildInputs = [ ··· 38 39 beautifulsoup4 39 40 ]; 40 41 41 - nativeCheckInputs = [ 42 - pytestCheckHook 43 - ]; 42 + # Tests require network access 43 + doCheck = false; 44 44 45 45 pythonImportsCheck = [ 46 46 "syncedlyrics" 47 - ]; 48 - 49 - pytestFlagsArray = [ 50 - "test.py::test_all_providers" 51 47 ]; 52 48 53 49 meta = with lib; {