about summary refs log tree commit diff
path: root/pkgs/development/python-modules/jellyfin-apiclient-python
diff options
context:
space:
mode:
authorJohannes Schleifenbaum <johannes@js-webcoding.de>2021-03-18 08:26:01 +0100
committerJohannes Schleifenbaum <johannes@js-webcoding.de>2021-03-18 08:26:01 +0100
commit6460e408757d7f8e3fe1fddf99ecda603f00e84c (patch)
tree22b3de0a7e529116718ff48f25dca569e95e9017 /pkgs/development/python-modules/jellyfin-apiclient-python
parent9f511d351b2a957a3cf12c8a34bef2842f3f42e9 (diff)
pythonPackages.jellyfin-apiclient-python: 1.6.2 -> 1.7.0
Diffstat (limited to 'pkgs/development/python-modules/jellyfin-apiclient-python')
-rw-r--r--pkgs/development/python-modules/jellyfin-apiclient-python/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix b/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix
index 010029910b66d..f9455ac597ffe 100644
--- a/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix
+++ b/pkgs/development/python-modules/jellyfin-apiclient-python/default.nix
@@ -3,12 +3,12 @@
 
 buildPythonPackage rec {
   pname = "jellyfin-apiclient-python";
-  version = "1.6.2";
+  version = "1.7.0";
   disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-tFYMQYbnFTJTkZtJ+ZASWL6qsf/CK7EzTYukZm/wBgI=";
+    sha256 = "sha256-OyJ29pbVTkEJwnt5LfHSCjo76eUex4TTkIhXMmiHTNI=";
   };
 
   propagatedBuildInputs = [ requests websocket_client ];
@@ -17,7 +17,7 @@ buildPythonPackage rec {
   pythonImportsCheck = [ "jellyfin_apiclient_python" ];
 
   meta = with lib; {
-    homepage = "https://github.com/iwalton3/jellyfin-apiclient-python";
+    homepage = "https://github.com/jellyfin/jellyfin-apiclient-python";
     description = "Python API client for Jellyfin";
     license = licenses.gpl3;
     maintainers = with maintainers; [ jojosch ];