From 6580f4aa3243d62b3059353f0a4db074d5c52681 Mon Sep 17 00:00:00 2001 From: bdunahu Date: Fri, 27 Feb 2026 19:04:22 -0500 Subject: gnu: Add austin. * gnu/packages/python-check (austin): New variable. Merges: https://codeberg.org/guix/guix/pulls/6762 Change-Id: I173f7a6c0eb59c544e3d3d5d5a9213558cf8f4bb Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-check.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) (limited to 'gnu/packages/python-check.scm') diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 8c205aea03b..3b22ff8a761 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -43,6 +43,7 @@ ;;; Copyright © 2025 Sergio Pastor Pérez ;;; Copyright © 2025 Zheng Junjie ;;; Copyright © 2026 Nguyễn Gia Phong +;;; Copyright © 2026 bdunahu ;;; ;;; This file is part of GNU Guix. ;;; @@ -62,6 +63,7 @@ (define-module (gnu packages python-check) #:use-module (gnu packages) #:use-module (gnu packages admin) + #:use-module (gnu packages autotools) #:use-module (gnu packages base) #:use-module (gnu packages bash) #:use-module (gnu packages cmake) @@ -93,6 +95,7 @@ #:use-module (gnu packages xorg) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix build-system cargo) + #:use-module (guix build-system gnu) #:use-module (guix build-system pyproject) #:use-module (guix build-system python) #:use-module (guix deprecation) @@ -103,6 +106,32 @@ #:use-module (guix packages) #:use-module (guix utils)) +(define-public austin + (package + (name "austin") + (version "4.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/P403n1x87/austin") + (commit (string-append "v" version)))) + (sha256 + (base32 "0h52z214w1xbx96i222c3syf2g2j9q762v39wcncaxhk2sa07xhn")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (native-inputs (list autoconf automake)) + (home-page "https://github.com/P403n1x87/austin") + (synopsis "Python frame stack sampler for CPython") + (description + "Austin is a Python frame stack sampler for CPython. Samples are +collected by reading the CPython interpreter virtual memory space to retrieve +information about the currently running threads along with the stack of the +frames that are being executed. Austin's binary output can be piped into any +other external or custom tools for further processing.") + (license (list license:gpl3+ + license:unlicense)))) ;src/ansi.h + (define-public python-aioresponses (package (name "python-aioresponses") -- cgit v1.3