@@ -9,6 +9,7 @@
;;; Copyright © 2020 Edouard Klein <edk@beaver-labs.com>
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
+;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -82,6 +83,22 @@ This package provides seamless integration with coverage.py (and thus pytest,
nosetests, etc...) in Python projects.")
(license license:expat)))
+(define-public python-pyinstrument-cext
+ (package
+ (name "python-pyinstrument-cext")
+ (version "0.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "pyinstrument-cext" version))
+ (sha256
+ (base32 "0nycf7nhx2xzba49m8208agx5xghzxkma3iim5f43h3l3pvjb7pj"))))
+ (build-system python-build-system)
+ (home-page "https://github.com/joerick/pyinstrument_cext")
+ (synopsis "A CPython extension supporting pyinstrument")
+ (description "A CPython extension supporting pyinstrument")
+ (license license:bsd-3)))
+
(define-public python-vcrpy
(package
(name "python-vcrpy")