diff options
author | David Elsing <david.elsing@posteo.net> | 2025-05-01 09:35:12 +0000 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-05-01 12:34:29 +0200 |
commit | 40066ba37ac9fd7bbb70f7c6f81dda27cdedd78b (patch) | |
tree | 23eb750f33d0a599ae388e4a2ad59a5eadfa6eaf | |
parent | 72ada057342a5c004f5eaae61a3ee8b653ca1d31 (diff) | |
download | guix-40066ba37ac9fd7bbb70f7c6f81dda27cdedd78b.tar.gz guix-40066ba37ac9fd7bbb70f7c6f81dda27cdedd78b.zip |
gnu: Add python-pytest-mpi.
* gnu/packages/python-check.scm (python-pytest-mpi): New variable.
Change-Id: If1c5fd2ad6d6e3243be2a8d595e1f9b7f3204f3d
Signed-off-by: Andreas Enge <andreas@enge.fr>
-rw-r--r-- | gnu/packages/python-check.scm | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index eb4d62a294..2b008a2bdb 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -23,7 +23,7 @@ ;;; Copyright © 2022 jgart <jgart@dismail.de> ;;; Copyright © 2024-2025 Troy Figiel <troy@troyfigiel.com> ;;; Copyright © 2024 Navid Afkhami <navid.afkhami@mdc-berlin.de> -;;; Copyright © 2024 David Elsing <david.elsing@posteo.net> +;;; Copyright © 2024, 2025 David Elsing <david.elsing@posteo.net> ;;; Copyright © 2024 Eric Bavier <bavier@posteo.net> ;;; Copyright © 2024 Markku Korkeala <markku.korkeala@iki.fi> ;;; Copyright © 2025 Evgeny Pisemsky <mail@pisemsky.site> @@ -2446,6 +2446,24 @@ framework and makes it easy to undo any monkey patching. The fixtures are: @end itemize") (license license:expat))) +(define-public python-pytest-mpi + (package + (name "python-pytest-mpi") + (version "0.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "pytest-mpi" version)) + (sha256 + (base32 "1a954cai5lr327np5f38mg8gw91p4akx8m2z416wvwzq24swvcq9")))) + (build-system python-build-system) + (propagated-inputs (list python-pytest)) + (home-page "https://pytest-mpi.readthedocs.io") + (synopsis "Pytest plugin for working with MPI") + (description "This plugin for Pytest provides tools for running Python +tests with MPI and for testing code using MPI.") + (license license:bsd-3))) + (define-public python-pytest-mpl (package (name "python-pytest-mpl") |