Merge pull request #188485 from r-ryantm/auto-update/python310Packages.jellyfin-apiclient-python

python310Packages.jellyfin-apiclient-python: 1.8.1 -> 1.9.1

authored by Fabian Affolter and committed by GitHub 986a8e9b a82cdcf9

+15 -9
+15 -9
pkgs/development/python-modules/jellyfin-apiclient-python/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 - , pythonOlder 3 + , certifi 4 4 , fetchPypi 5 - , certifi 5 + , pythonOlder 6 6 , requests 7 - , six 7 + , urllib3 8 8 , websocket-client 9 9 }: 10 10 11 11 buildPythonPackage rec { 12 12 pname = "jellyfin-apiclient-python"; 13 - version = "1.8.1"; 13 + version = "1.9.1"; 14 + format = "setuptools"; 15 + 14 16 disabled = pythonOlder "3.6"; 15 17 16 18 src = fetchPypi { 17 19 inherit pname version; 18 - sha256 = "t2XmZ7rsrZq943lzRDrqzsY/djFNjFbkEYeHeA2AViI="; 20 + hash = "sha256-fS+NQUTKNxHuE+qsV91mpTlYt7DfXQVsA9ybfLlHYtc="; 19 21 }; 20 22 21 23 propagatedBuildInputs = [ 22 24 certifi 23 25 requests 24 - six 26 + urllib3 25 27 websocket-client 26 28 ]; 27 29 28 - doCheck = false; # no tests 29 - pythonImportsCheck = [ "jellyfin_apiclient_python" ]; 30 + # Module has no test 31 + doCheck = false; 32 + 33 + pythonImportsCheck = [ 34 + "jellyfin_apiclient_python" 35 + ]; 30 36 31 37 meta = with lib; { 38 + description = "Python API client for Jellyfin"; 32 39 homepage = "https://github.com/jellyfin/jellyfin-apiclient-python"; 33 - description = "Python API client for Jellyfin"; 34 40 license = licenses.gpl3Only; 35 41 maintainers = with maintainers; [ jojosch ]; 36 42 };