From f5316f16f6114a955bb0e201c4a9259de8af72ef Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Wed, 6 May 2026 15:29:48 +0000 Subject: [PATCH] python3Packages.pyluwen: cleanup --- pkgs/development/python-modules/pyluwen/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/pyluwen/default.nix b/pkgs/development/python-modules/pyluwen/default.nix index 37fc91f0dd17..da3620d49289 100644 --- a/pkgs/development/python-modules/pyluwen/default.nix +++ b/pkgs/development/python-modules/pyluwen/default.nix @@ -1,9 +1,9 @@ { lib, buildPythonPackage, - runCommand, fetchFromGitHub, rustPlatform, + maturin, protobuf_30, }: @@ -21,11 +21,11 @@ buildPythonPackage (finalAttrs: { }; cargoDeps = rustPlatform.fetchCargoVendor { - inherit (finalAttrs) src; + inherit (finalAttrs) pname version src; hash = "sha256-QBGXbRiBk4WIQFopq1OccmUHgx5GzR/PKhMH4Ie+fyg="; }; - sourceRoot = "${finalAttrs.src.name}/bind/${finalAttrs.pname}"; + sourceRoot = "${finalAttrs.src.name}/bind/pyluwen"; prePatch = '' chmod -R u+w ../../ @@ -49,6 +49,7 @@ buildPythonPackage (finalAttrs: { meta = { description = "Tenstorrent system interface library"; homepage = "https://github.com/tenstorrent/luwen"; + changelog = "https://github.com/tenstorrent/luwen/releases/tag/${finalAttrs.src.tag}"; maintainers = with lib.maintainers; [ RossComputerGuy ]; license = with lib.licenses; [ asl20 ]; };