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
a7d444c1
Verified
Commit
a7d444c1
authored
Jul 08, 2020
by
Efraim Flashner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add python24-argparse.
* modules/past/packages/python.scm (python24-argparse): New variable.
parent
7c299047
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
modules/past/packages/python.scm
modules/past/packages/python.scm
+33
-0
No files found.
modules/past/packages/python.scm
View file @
a7d444c1
...
...
@@ -127,6 +127,39 @@ released on 2006-09-19.")))
(
define-public
python24-argparse
(
package
(
name
"python24-argparse"
)
(
version
"1.4.0"
)
(
source
(
origin
(
method
url-fetch
)
(
uri
(
pypi-uri
"argparse"
version
))
(
sha256
(
base32
"1r6nznp64j68ih1k537wms7h57nvppq0szmwsaf99n71bfjqkc32"
))))
(
build-system
python-build-system
)
(
arguments
`
(
#
:python
,
python-2
.
4
#
: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
(
invoke
"python"
"test/test_argparse.py"
))
#t
)))))
(
native-inputs
`
((
"setuptools"
,
python24-setuptools
)))
(
home-page
"https://github.com/ThomasWaldmann/argparse/"
)
(
properties
'
((
release-date
"2015-09-12"
)))
(
synopsis
"Python command-line parsing library"
)
(
description
"This package is mostly for people who want to have @code{argparse} on
older Pythons because it was not part of the standard library back then."
)
(
license
license:psfl
)))
(
define-public
python24-nose
(
package
(
name
"python24-nose"
)
...
...
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