mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
gnu: Add python-pytest-astropy-header.
* gnu/packages/python-check.scm (python-pytest-astropy-header): New variable. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
f90bbba4cc
commit
9daa9f2a6f
1 changed files with 25 additions and 0 deletions
|
@ -9,6 +9,7 @@
|
||||||
;;; Copyright © 2020 Edouard Klein <edk@beaver-labs.com>
|
;;; Copyright © 2020 Edouard Klein <edk@beaver-labs.com>
|
||||||
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
|
||||||
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
;;; Copyright © 2020 Tanguy Le Carrour <tanguy@bioneland.org>
|
||||||
|
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -196,6 +197,30 @@ (define-public python-pytest-ordering
|
||||||
of tests run in a specific order.")
|
of tests run in a specific order.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public python-pytest-astropy-header
|
||||||
|
(package
|
||||||
|
(name "python-pytest-astropy-header")
|
||||||
|
(version "0.1.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "pytest-astropy-header" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "1y87agr324p6x5gvhziymxjlw54pyn4gqnd49papbl941djpkp5g"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(native-inputs
|
||||||
|
`(("pytest" ,python-pytest)
|
||||||
|
("setuptools-scm" ,python-setuptools-scm)))
|
||||||
|
(home-page "https://www.astropy.org/")
|
||||||
|
(synopsis
|
||||||
|
"Pytest plugin adding diagnostic data to the header of the test output")
|
||||||
|
(description
|
||||||
|
"This plugin package provides a way to include information about the system,
|
||||||
|
Python installation, and select dependencies in the header of the output when
|
||||||
|
running pytest. It can be used with packages that are not affiliated with the
|
||||||
|
Astropy project, but is optimized for use with astropy-related projects.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-pytest-arraydiff
|
(define-public python-pytest-arraydiff
|
||||||
(package
|
(package
|
||||||
(name "python-pytest-arraydiff")
|
(name "python-pytest-arraydiff")
|
||||||
|
|
Loading…
Reference in a new issue