From 42f3b4d0a3ca882d690a79f1aec6d72b415d39e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9o=20Bori?= Date: Sun, 31 May 2026 17:03:14 +0200 Subject: [PATCH] python3Packages.tmdbsimple: 2.9.2-unstable-2025-01-07 -> 2.9.6 --- .../python-modules/tmdbsimple/default.nix | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) 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 ]; }; -} +})