me
/
guix
Archived
1
0
Fork 0

gnu: Add python-pytest-forked-next.

* gnu/packages/check.scm (python-pytest-forked-next): New variable.
master
Maxim Cournoyer 2022-04-12 15:14:56 -04:00
parent 4b6500f972
commit 44dc0f0f0b
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 17 additions and 0 deletions

View File

@ -1570,6 +1570,23 @@ can be useful to isolate tests against undesirable global environment
side-effects (such as setting environment variables).")
(license license:expat)))
(define-public python-pytest-forked-next
(package
(inherit python-pytest-forked)
(name "python-pytest-forked")
(version "1.4.0")
(source
(origin
(method git-fetch) ;for tests
(uri (git-reference
(url "https://github.com/pytest-dev/pytest-forked")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0j9bbjny7h3b4fig6l26f26c697r67mm62fzdd9m9rqyy2bmnqjs"))))
(native-inputs (list python-pytest-bootstrap python-setuptools-scm))))
(define-public python-scripttest
(package
(name "python-scripttest")