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

{tools}[GCCcore/12.3.0] dx-toolkit v0.382.0 #21421

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
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,51 @@
# This file is an EasyBuild reciPY as per https://github.com/easybuilders/easybuild

easyblock = 'PythonBundle'

name = 'dx-toolkit'
version = '0.382.0'

homepage = 'https://documentation.dnanexus.com/downloads#dnanexus-platform-sdk'
description = """The DNAnexus Platform SDK - also called dx-toolkit - includes the dx command-line client;
tools for building and debugging apps; utilities for working with DNA data on the DNAnexus Platform;
and Python, Java, C++ and R bindings for working on the DNAnexus Platform.
"""

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

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

dependencies = [
('Python', '3.11.3'),
('Python-bundle-PyPI', '2023.06'),
]

use_pip = True
sanity_pip_check = True

exts_list = [
('argcomplete', '3.5.0', {
'sources': ['%(name)s-%(version)s-py3-none-any.whl'],
'checksums': ['d4bcf3ff544f51e16e54228a7ac7f486ed70ebf2ecfe49a63a91171c76bf029b'],
}),
('websocket-client', '1.7.0', {
'modulename': 'websocket',
'checksums': ['10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6'],
}),
('dxpy', version, {
'checksums': ['c8427fdc2d293622e2fa250afe6e51fc85a21c5abed697be863eb7a644c502e7'],
}),
]

sanity_check_paths = {
'files': ['bin/dx', 'bin/wsdump'],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}

sanity_check_commands = [
'dx --help',
]

moduleclass = 'tools'
Loading