From b08427180737e96ce77e59257e6ebdff01a01202 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 30 Jan 2026 14:27:50 +0000 Subject: [PATCH] python3Packages.lineax: 0.0.8 -> 0.1.0 Diff: https://github.com/patrick-kidger/lineax/compare/v0.0.8...v0.1.0 Changelog: https://github.com/patrick-kidger/lineax/releases/tag/v0.1.0 --- pkgs/development/python-modules/lineax/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/lineax/default.nix b/pkgs/development/python-modules/lineax/default.nix index 3f31208364de..e61fdf039eea 100644 --- a/pkgs/development/python-modules/lineax/default.nix +++ b/pkgs/development/python-modules/lineax/default.nix @@ -18,16 +18,16 @@ python, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "lineax"; - version = "0.0.8"; + version = "0.1.0"; pyproject = true; src = fetchFromGitHub { owner = "patrick-kidger"; repo = "lineax"; - tag = "v${version}"; - hash = "sha256-VMTDCExgxfCcd/3UZAglfAxAFaSjzFJJuvSWJAx2tJs="; + tag = "v${finalAttrs.version}"; + hash = "sha256-oUqJRp4pge3t9g7o/9PCZTb7e4EPkBEGLclHMIdUqiw="; }; build-system = [ hatchling ]; @@ -59,8 +59,8 @@ buildPythonPackage rec { meta = { description = "Linear solvers in JAX and Equinox"; homepage = "https://github.com/patrick-kidger/lineax"; - changelog = "https://github.com/patrick-kidger/lineax/releases/tag/${src.tag}"; + changelog = "https://github.com/patrick-kidger/lineax/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.asl20; maintainers = with lib.maintainers; [ GaetanLepage ]; }; -} +})