From 1f0fd9312778ddec66bb64403d6430e844aa5b71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Fri, 14 Aug 2026 02:10:56 +0200 Subject: [PATCH] glitchtip.glitchtip-rust: 0.3.0 -> 0.9.0 Diff: https://gitlab.com/glitchtip/glitchtip-rust/-/compare/v0.3.0...v0.9.0 Changelog: https://gitlab.com/glitchtip/glitchtip-rust/-/tags/v0.3.1 Changelog: https://gitlab.com/glitchtip/glitchtip-rust/-/tags/v0.4.0 Changelog: https://gitlab.com/glitchtip/glitchtip-rust/-/tags/v0.5.0 Changelog: https://gitlab.com/glitchtip/glitchtip-rust/-/tags/v0.6.0 Changelog: https://gitlab.com/glitchtip/glitchtip-rust/-/tags/v0.6.1 Changelog: https://gitlab.com/glitchtip/glitchtip-rust/-/tags/v0.7.0 Changelog: https://gitlab.com/glitchtip/glitchtip-rust/-/tags/v0.8.0 Changelog: https://gitlab.com/glitchtip/glitchtip-rust/-/tags/v0.9.0 --- pkgs/by-name/gl/glitchtip/glitchtip-rust.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/gl/glitchtip/glitchtip-rust.nix b/pkgs/by-name/gl/glitchtip/glitchtip-rust.nix index 455d00a4614a..49673167c3a3 100644 --- a/pkgs/by-name/gl/glitchtip/glitchtip-rust.nix +++ b/pkgs/by-name/gl/glitchtip/glitchtip-rust.nix @@ -1,25 +1,26 @@ { lib, buildPythonPackage, + django-vpg, fetchFromGitLab, rustPlatform, }: buildPythonPackage (finalAttrs: { pname = "glitchtip-rust"; - version = "0.3.0"; + version = "0.9.0"; pyproject = true; src = fetchFromGitLab { owner = "glitchtip"; repo = "glitchtip-rust"; tag = "v${finalAttrs.version}"; - hash = "sha256-0FG+seIWqfyOG3JR0WF4ICnxMAPx9FO0JyFSB43CttU="; + hash = "sha256-XQoJJ3w1HTyOtzjnsU2OD2IkOMLUSvIf+9Xd0sF9s5E="; }; cargoDeps = rustPlatform.fetchCargoVendor { inherit (finalAttrs) pname version src; - hash = "sha256-14j7h4TgQhTE5oihnvjAxtGZhPajuTRD4Cga8xzN9Lg="; + hash = "sha256-vXRcONfyrHCjcdfjHjpauoRTgiqcHgkBsNIS6VDPWpo="; }; nativeBuildInputs = [ @@ -27,6 +28,8 @@ buildPythonPackage (finalAttrs: { rustPlatform.maturinBuildHook ]; + dependencies = [ django-vpg ]; + pythonImportsCheck = [ "gt_rust" ]; meta = {