From 504dd8b6960705e032ac6fa860f57e3ce3808dba Mon Sep 17 00:00:00 2001 From: Malte Frank Gerdes Date: Thu, 7 Apr 2022 18:09:12 +0200 Subject: gnu: Add python-pyinstrument. * gnu/packages/python-check.scm (python-pyinstrument): New variable. Co-authored-by: Guillaume Le Vaillant --- gnu/packages/python-check.scm | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) (limited to 'gnu/packages/python-check.scm') diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 5bbe544113..02e1b5a9d7 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -11,8 +11,9 @@ ;;; Copyright © 2020 Tanguy Le Carrour ;;; Copyright © 2021 Sharlatan Hellseher ;;; Copyright © 2021 Brendan Tildesley -;;; Copyright © 2021 Guillaume Le Vaillant +;;; Copyright © 2021, 2022 Guillaume Le Vaillant ;;; Copyright © 2021 Bonface Munyoki Kilyungi +;;; Copyright © 2022 Malte Frank Gerdes ;;; ;;; This file is part of GNU Guix. ;;; @@ -244,6 +245,36 @@ (define-public python-junit-xml result documents that can be read by tools such as Jenkins or Bamboo.") (license license:expat)))) +(define-public python-pyinstrument + (package + (name "python-pyinstrument") + (version "4.1.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pyinstrument" version)) + (sha256 + (base32 "18n3waxsxcd48pmcp8158s5rlancll2000amrdck9zfj5hfpkhhx")))) + (build-system python-build-system) + (native-inputs + (list python-flaky + python-pytest + python-pytest-asyncio + python-pytest-trio)) + (arguments + `(;; TODO: Get tests to work. + #:tests? #f + #:phases (modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + (invoke "pytest" "-vv"))))))) + (home-page "https://github.com/joerick/pyinstrument") + (synopsis "Call stack profiler for Python") + (description + "Pyinstrument is a Python profiler to help you optimize your code.") + (license license:bsd-3))) + (define-public python-vcrpy (package (name "python-vcrpy") -- cgit v1.2.3