Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ dependencies = [
('Mako', '1.2.0'),
('configurable-http-proxy', '4.5.3'),
('OpenSSL', '1.1', '', SYSTEM),
('jupyter-server-proxy', '3.2.2') # This is optional, but commonly used together
('jupyter-server-proxy', '3.2.2'), # optional, but commonly used together
('PycURL', '7.45.2'), # optional, recommended with large number of users
]

use_pip = True
Expand Down
28 changes: 28 additions & 0 deletions easybuild/easyconfigs/p/PycURL/PycURL-7.45.2-GCCcore-11.3.0.eb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This easyconfig was created by Simon Branford of the BEAR Software team at the University of Birmingham.
easyblock = 'PythonPackage'

name = 'PycURL'
version = '7.45.2'

homepage = "http://pycurl.io/"
description = """PycURL is a Python interface to libcurl. PycURL can be used to fetch objects identified by a URL
from a Python program, similar to the urllib Python module. PycURL is mature, very fast, and supports a lot of
features."""

toolchain = {'name': 'GCCcore', 'version': '11.3.0'}

builddependencies = [('binutils', '2.38')]

dependencies = [
('Python', '3.10.4'),
('cURL', '7.83.0'),
]

sources = [SOURCELOWER_TAR_GZ]
checksums = ['5730590be0271364a5bddd9e245c9cc0fb710c4cbacbdd95264a3122d23224ca']

download_dep_fail = True
sanity_pip_check = True
use_pip = True

moduleclass = 'tools'