Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Append "python-cachecontrol" with "-0.11.7" #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions cwl/cwl.scm
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
`(("git" ,git)
("node" ,node)
("python-bagit" ,python-bagit)
("python-cachecontrol" ,python-cachecontrol) ; requires 0.12
("python-cachecontrol-0.11.7" ,python-cachecontrol-0.11.7) ; requires 0.12
("python-arcp" ,python-arcp)
("python-setuptools-vtags" ,python-setuptools-vtags)
("python-dateutil" ,python-dateutil)
Expand All @@ -75,7 +75,7 @@
("python-mock" ,python-mock)
("python-subprocess32" ,python-subprocess32)
("python-ruamel.yaml" ,python-ruamel.yaml)
("python-cachecontrol" ,python-cachecontrol)
("python-cachecontrol-0.11.7" ,python-cachecontrol-0.11.7)
("python-lxml" ,python-lxml)
("python-mypy-extensions" ,python-mypy-extensions)
("python-mistune" ,python-mistune)
Expand Down Expand Up @@ -123,7 +123,7 @@
(build-system python-build-system)
(arguments `(#:tests? #f)) ;; CWL includes no tests.
(inputs
`(("python-cachecontrol" ,python-cachecontrol) ; requires 0.12
`(("python-cachecontrol-0.11.7" ,python-cachecontrol-0.11.7) ; requires 0.12
("python-cython" ,python-cython)
("python-setuptools-vtags" ,python-setuptools-vtags)
("python-rdflib-jsonld" ,python-rdflib-jsonld)
Expand Down
8 changes: 4 additions & 4 deletions cwl/python.scm
Original file line number Diff line number Diff line change
Expand Up @@ -599,9 +599,9 @@ the older versions.")
"Python bagit.")
(license license:gpl2)))

(define-public python-cachecontrol ; schema-salad requires a specific version
(define-public python-cachecontrol-0.11.7 ; schema-salad requires a specific version
(package
(name "python-cachecontrol")
(name "python-cachecontrol-0.11.7")
(version "0.11.7")
(source
(origin
Expand Down Expand Up @@ -641,5 +641,5 @@ the older versions.")
@code{httplib2} for use with @code{requests} session objects.")
(license license:asl2.0)))

(define-public python2-cachecontrol
(package-with-python2 python-cachecontrol))
(define-public python2-cachecontrol-0.11.7
(package-with-python2 python-cachecontrol-0.11.7))