diff options
| author | bdunahu <bdunahu@operationnull.com> | 2026-02-27 19:04:22 -0500 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-01 13:41:54 +0000 |
| commit | 6580f4aa3243d62b3059353f0a4db074d5c52681 (patch) | |
| tree | 94676280af38efb2ae4ceedbbf61109fbd91d380 | |
| parent | 0c506e6f526e51d0dd9c69e4141711bc8ab7659c (diff) | |
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 <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/python-check.scm | 29 |
1 files changed, 29 insertions, 0 deletions
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 <sergio.pastorperez@gmail.com> ;;; Copyright © 2025 Zheng Junjie <z572@z572.online> ;;; Copyright © 2026 Nguyễn Gia Phong <cnx@loang.net> +;;; Copyright © 2026 bdunahu <bdunahu@operationnull.com> ;;; ;;; 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") |
