python3Packages.tmdbsimple: 2.9.2-unstable-2025-01-07 -> 2.9.6

This commit is contained in:
Théo Bori
2026-05-31 17:03:14 +02:00
parent d591cf3617
commit 42f3b4d0a3
@@ -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 ];
};
}
})