diff --git a/pkgs/development/python-modules/tmdbsimple/default.nix b/pkgs/development/python-modules/tmdbsimple/default.nix index 97fd4e3a9982..af5a9a8019d8 100644 --- a/pkgs/development/python-modules/tmdbsimple/default.nix +++ b/pkgs/development/python-modules/tmdbsimple/default.nix @@ -4,19 +4,18 @@ fetchFromGitHub, setuptools, requests, - unstableGitUpdater, }: -buildPythonPackage { +buildPythonPackage (finalAttrs: { pname = "tmdbsimple"; - version = "2.9.2-unstable-2025-01-07"; + version = "2.9.6"; pyproject = true; src = fetchFromGitHub { owner = "celiao"; repo = "tmdbsimple"; - rev = "0b3359f7bab3ade391b2e5de964ed115b00984a6"; - hash = "sha256-usyL2lHSJwvPnWncI3K+yTmeU5DN1AkRzHC5nFh3vxs="; + tag = finalAttrs.version; + hash = "sha256-ooyfwRCvH980gym8ujpLxbmR7FYfi59gGXqT8K40pNw="; }; build-system = [ setuptools ]; @@ -28,12 +27,10 @@ buildPythonPackage { # The tests require an internet connection and an API key doCheck = false; - passthru.updateScript = unstableGitUpdater { }; - meta = { description = "Wrapper for The Movie Database API v3"; homepage = "https://github.com/celiao/tmdbsimple"; license = lib.licenses.gpl3Plus; maintainers = with lib.maintainers; [ theobori ]; }; -} +})