From dcc9d2a7e5d682fe2277bee3e2d58f10e163e7a0 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 23 Mar 2026 15:17:53 +0200 Subject: [PATCH] python3.pkgs.sphinx-tabs: 3.4.7-unstable-2026-01-24 -> 3.5.0 --- .../development/python-modules/sphinx-tabs/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/sphinx-tabs/default.nix b/pkgs/development/python-modules/sphinx-tabs/default.nix index dc2677f13bf1..00d55df2a701 100644 --- a/pkgs/development/python-modules/sphinx-tabs/default.nix +++ b/pkgs/development/python-modules/sphinx-tabs/default.nix @@ -17,9 +17,9 @@ beautifulsoup4, }: -buildPythonPackage { +buildPythonPackage (finalAttrs: { pname = "sphinx-tabs"; - version = "3.4.7-unstable-2026-01-24"; + version = "3.5.0"; pyproject = true; outputs = [ @@ -30,8 +30,8 @@ buildPythonPackage { src = fetchFromGitHub { owner = "executablebooks"; repo = "sphinx-tabs"; - rev = "d613cb7b6bff083227e35e9b3a4c56b24f6c6ad4"; - hash = "sha256-aYlc9bs37Mu4Beuggx0dgVdoRa+X65oDNnYg3Wa4dgc="; + tag = "v${finalAttrs.version}"; + hash = "sha256-OuGrrlCEkTxu3WueCPHHuEeMGXPf/lrETbTP/9uVWbU="; }; nativeBuildInputs = [ @@ -58,4 +58,4 @@ buildPythonPackage { license = lib.licenses.mit; maintainers = with lib.maintainers; [ kaction ]; }; -} +})