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

python310Packages.jellyfin-apiclient-python: 1.8.1 -> 1.9.1
This commit is contained in:
Fabian Affolter 2022-08-28 20:57:27 +02:00 committed by GitHub
commit 986a8e9bb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,36 +1,42 @@
{ lib
, buildPythonPackage
, pythonOlder
, fetchPypi
, certifi
, fetchPypi
, pythonOlder
, requests
, six
, urllib3
, websocket-client
}:
buildPythonPackage rec {
pname = "jellyfin-apiclient-python";
version = "1.8.1";
version = "1.9.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "t2XmZ7rsrZq943lzRDrqzsY/djFNjFbkEYeHeA2AViI=";
hash = "sha256-fS+NQUTKNxHuE+qsV91mpTlYt7DfXQVsA9ybfLlHYtc=";
};
propagatedBuildInputs = [
certifi
requests
six
urllib3
websocket-client
];
doCheck = false; # no tests
pythonImportsCheck = [ "jellyfin_apiclient_python" ];
# Module has no test
doCheck = false;
pythonImportsCheck = [
"jellyfin_apiclient_python"
];
meta = with lib; {
homepage = "https://github.com/jellyfin/jellyfin-apiclient-python";
description = "Python API client for Jellyfin";
homepage = "https://github.com/jellyfin/jellyfin-apiclient-python";
license = licenses.gpl3Only;
maintainers = with maintainers; [ jojosch ];
};