-
Notifications
You must be signed in to change notification settings - Fork 720
/
Copy pathanndata-0.9.2-foss-2021a.eb
42 lines (32 loc) · 1.07 KB
/
anndata-0.9.2-foss-2021a.eb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
easyblock = 'PythonBundle'
name = 'anndata'
version = '0.9.2'
homepage = 'https://github.com/scverse/anndata'
description = """anndata is a Python package for handling annotated data matrices in memory and on disk,
positioned between pandas and xarray"""
toolchain = {'name': 'foss', 'version': '2021a'}
dependencies = [
('Python', '3.9.5'),
('SciPy-bundle', '2021.05'),
('h5py', '3.2.1'),
]
use_pip = True
exts_list = [
# more recent setuptools required because scib-metrics uses pyproject.toml
('setuptools', '68.1.2', {
'checksums': ['3d4dfa6d95f1b101d695a6160a7626e15583af71a5f52176efa5d39a054d475d'],
}),
('natsort', '8.4.0', {
'checksums': ['45312c4a0e5507593da193dedd04abb1469253b601ecaf63445ad80f0a1ea581'],
}),
(name, version, {
'checksums': ['e5b8383d09723af674cae7ad0c2ef53eb1f8c73949b7f4c182a6e30f42196327'],
}),
]
sanity_check_paths = {
'files': ['bin/natsort'],
'dirs': ['lib/python%(pyshortver)s/site-packages'],
}
sanity_check_commands = ["natsort --help"]
sanity_pip_check = True
moduleclass = 'bio'