From 8212bbc5ecf66f73ecc95d477be4d12079cd6c4a Mon Sep 17 00:00:00 2001 From: Petr Hodina Date: Tue, 27 Dec 2022 22:55:54 +0100 Subject: [PATCH 02/10] gnu: Add python-benchmark. * gnu/packages/python-check.scm (python-benchmark): New variable. diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index 486abf1c13..8ab3b5641e 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -109,6 +109,22 @@ (define-public python-beartype written in pure Python.") (license license:expat))) +(define-public python-benchmark + (package + (name "python-benchmark") + (version "0.1.5") + (source (origin + (method url-fetch) + (uri (pypi-uri "benchmark" version)) + (sha256 + (base32 + "08vwzlr5n2r0sf0niv1hvdk3n2wy93x2cs2yw7c2w7c3cmbb51qg")))) + (build-system python-build-system) + (home-page "http://jspi.es/benchmark") + (synopsis "Python benchmarker / benchmarking framework") + (description "Python benchmarker / benchmarking framework") + (license license:asl2.0))) + (define-public python-pytest-click (package (name "python-pytest-click") -- 2.38.1