This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6580f4aa32 gnu: Add austin.
6580f4aa32 is described below
commit 6580f4aa3243d62b3059353f0a4db074d5c52681
Author: bdunahu <[email protected]>
AuthorDate: Fri Feb 27 19:04:22 2026 -0500
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 <[email protected]>
---
gnu/packages/python-check.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 8c205aea03..3b22ff8a76 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -43,6 +43,7 @@
;;; Copyright © 2025 Sergio Pastor Pérez <[email protected]>
;;; Copyright © 2025 Zheng Junjie <[email protected]>
;;; Copyright © 2026 Nguyễn Gia Phong <[email protected]>
+;;; Copyright © 2026 bdunahu <[email protected]>
;;;
;;; 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")