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