Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Guix Past
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guix-hpc
Guix Past
Commits
cc38fa02
Verified
Commit
cc38fa02
authored
Jul 08, 2020
by
Efraim Flashner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add python24-pytest 2.4.2
parent
80efa1f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
modules/past/packages/python.scm
modules/past/packages/python.scm
+38
-0
No files found.
modules/past/packages/python.scm
View file @
cc38fa02
...
...
@@ -427,6 +427,44 @@ animated, and interactive visualizations in Python.")
I/O, code introspection, and logging."
)
(
license
license:expat
)))
(
define-public
python24-pytest
(
package
(
name
"python24-pytest"
)
(
version
"2.4.2"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
pypi-uri
"pytest"
version
))
(
sha256
(
base32
"1q00r8jwvrdpx0fhjsbp6g61qxfbmdxc4n5rzf0m7sdi6babxjxw"
))))
(
build-system
python-build-system
)
(
arguments
`
(
#
:python
,
python-2
.
4
#
:tests?
#f
#
:phases
(
modify-phases
%standard-phases
(
replace
'check
(
lambda*
(
#
:key
inputs
outputs
tests?
#
:allow-other-keys
)
(
add-installed-pythonpath
inputs
outputs
)
(
when
tests?
;; Taken from tox.ini
(
with-directory-excursion
"testing"
(
invoke
"python"
"-m"
"pytest"
"--lsof"
"-rfsxX"
)))
#t
)))))
(
propagated-inputs
`
((
"argparse"
,
python24-argparse
)
; python < 2.7
(
"py"
,
python24-py
)))
(
native-inputs
`
((
"setuptools"
,
python24-setuptools
)))
(
home-page
"https://docs.pytest.org/en/stable/"
)
(
properties
'
((
release-date
"2013-10-04"
)))
(
synopsis
"Py.test 2.4.2, released 2013-10-04"
)
(
description
"Pytest is a testing tool that provides auto-discovery of test
modules and functions, detailed info on failing assert statements, modular
fixtures, and many external plugins."
)
(
license
license:expat
)))
(
define-public
python24-pytz
(
package
(
inherit
python-pytz
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment