diff --git a/easybuild/easyconfigs/o/openslide-python/openslide-python-1.4.2-GCCcore-13.3.0.eb b/easybuild/easyconfigs/o/openslide-python/openslide-python-1.4.2-GCCcore-13.3.0.eb new file mode 100644 index 000000000000..5eff938dd4a6 --- /dev/null +++ b/easybuild/easyconfigs/o/openslide-python/openslide-python-1.4.2-GCCcore-13.3.0.eb @@ -0,0 +1,28 @@ +easyblock = 'PythonPackage' + +name = 'openslide-python' +version = '1.4.2' + +homepage = 'https://github.com/openslide/openslide-python' +description = "OpenSlide Python is a Python interface to the OpenSlide library." + +toolchain = {'name': 'GCCcore', 'version': '13.3.0'} + +source_urls = ['https://github.com/openslide/%(name)s/archive'] +sources = ['v%(version)s.tar.gz'] +checksums = ['9a15d4f0ace96a3486582741f4a6b7d7e555406f07097506abe75e900e0f3b63'] + +builddependencies = [ + ('binutils', '2.42'), +] +dependencies = [ + ('Python', '3.12.3'), + ('OpenSlide', '4.0.0'), + ('Pillow', '10.4.0'), +] + +preinstallopts = """sed -i '/^license/d' pyproject.toml && """ + +options = {'modulename': 'openslide'} + +moduleclass = 'vis'