diff options
author | Efraim Flashner | 2023-03-22 13:05:17 +0200 |
---|---|---|
committer | Efraim Flashner | 2023-03-22 13:05:17 +0200 |
commit | 7aebbdf506136c9071ab91882010ca978f2aac4d (patch) | |
tree | 4582cbec92b70f1a6b009c962987fbe035dc6f43 /gn/packages/python.scm | |
parent | da936272b5905a5cc631cfef50779959c5ea0981 (diff) | |
download | guix-bioinformatics-7aebbdf506136c9071ab91882010ca978f2aac4d.tar.gz |
Add python-pytest-5.
* gn/packages/python.scm (python-pytest-5): New variable.
Diffstat (limited to 'gn/packages/python.scm')
-rw-r--r-- | gn/packages/python.scm | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm index 5cff375..acfa6bc 100644 --- a/gn/packages/python.scm +++ b/gn/packages/python.scm @@ -1187,6 +1187,22 @@ query and resolves it against an endpoint.") sorted order.") (license license:expat))) +(define-public python-pytest-5 + (package + (inherit python-pytest) + (name "python-pytest") + (version "5.4.3") + (source (origin + (method url-fetch) + (uri (pypi-uri "pytest" version)) + (sha256 + (base32 + "1n67lk8iwlsmfdm8663k8l7isllg1xd3n9p1yla7885szhdk6ybr")))) + (build-system python-build-system) + (native-inputs + (modify-inputs (package-native-inputs python-pytest) + (prepend python-argcomplete python-requests))))) + (define-public python-pytest-4 (package (inherit python-pytest) |