Skip to content
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Author: Jasper Grimm (UoY)
# Update: Petr Král (INUITS)
# Update: Loris Bennett (FU Berlin)

easyblock = 'PythonBundle'

name = 'intervaltree-python'
version = '3.2.1'

homepage = 'https://github.com/chaimleib/intervaltree'
description = """A mutable, self-balancing interval tree. Queries may be by
point, by range overlap, or by range containment.
"""

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

builddependencies = [
('binutils', '2.42'),
('hatchling', '1.27.0'),
]

dependencies = [
('Python', '3.13.1'),
('Python-bundle-PyPI', '2025.04'),
]

exts_list = [
('intervaltree', version, {
'sources': [SOURCE_TAR_GZ],
'checksums': ['f3f7e8baeb7dd75b9f7a6d33cf3ec10025984a8e66e3016d537e52130c73cfe2'],
}),
]

moduleclass = 'bio'
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
easyblock = 'PythonPackage'

name = 'wurlitzer'
version = '3.1.1'

homepage = 'https://github.com/minrk/wurlitzer'
description = """Capture C-level output in context managers

For more details on why this is needed, please read this blog post:
https://eli.thegreenplace.net/2015/redirecting-all-kinds-of-stdout-in-python
"""

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

sources = [SOURCE_TAR_GZ]
checksums = ['bfb9144ab9f02487d802b9ff89dbd3fa382d08f73e12db8adc4c2fb00cd39bd9']

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

dependencies = [('Python', '3.13.1')]

moduleclass = 'devel'
Loading