From 2e711aa5647da8cc3ba781adba57917557a9415c Mon Sep 17 00:00:00 2001 From: Ethan Carter Edwards Date: Wed, 17 Jun 2026 11:19:55 -0700 Subject: [PATCH] python3Packages.exa-py: 2.13.1-unstable-2026-06-03 -> 2.14.0 Changelog: https://github.com/exa-labs/exa-py/releases/tag/v2.14.0 Only took some internal begging to get tags :) Signed-off-by: Ethan Carter Edwards --- pkgs/development/python-modules/exa-py/default.nix | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/exa-py/default.nix b/pkgs/development/python-modules/exa-py/default.nix index 2566261e5276..ba44908b4516 100644 --- a/pkgs/development/python-modules/exa-py/default.nix +++ b/pkgs/development/python-modules/exa-py/default.nix @@ -20,14 +20,11 @@ pytest-cov-stub, pytest-mock, pytestCheckHook, - - # passthru - unstableGitUpdater, }: buildPythonPackage (finalAttrs: { pname = "exa-py"; - version = "2.13.1-unstable-2026-06-03"; + version = "2.14.0"; pyproject = true; __structuredAttrs = true; @@ -35,8 +32,8 @@ buildPythonPackage (finalAttrs: { src = fetchFromGitHub { owner = "exa-labs"; repo = "exa-py"; - rev = "42fde906ecd069c15ad4888e1585b395a0db7edf"; - hash = "sha256-6o4SKAeP5q+57LCbbw5vP7r/dEA1HiQNa9CkopbTlxg="; + tag = "v${finalAttrs.version}"; + hash = "sha256-pL5d79KdKlfv4l/M7PF8fs0gUEk4DYEKPm8PJ+pwFMc="; }; build-system = [ @@ -66,11 +63,10 @@ buildPythonPackage (finalAttrs: { pytestFlags = [ "tests/" ]; - passthru.updateScript = unstableGitUpdater { }; - meta = { description = "Official Python SDK for Exa, the web search API for AI"; homepage = "https://github.com/exa-labs/exa-py/"; + changelog = "https://github.com/exa-labs/exa-py/releases/tag/v${finalAttrs.version}"; maintainers = with lib.maintainers; [ ethancedwards8 ]; license = lib.licenses.mit; };