From 0f720f7582fea79e5a39596e8eaa0490216f49c2 Mon Sep 17 00:00:00 2001 From: Simon Pinches Date: Tue, 10 Sep 2024 09:19:56 +0200 Subject: [PATCH] adding easyconfigs: python-docx-1.1.0-GCCcore-13.2.0.eb --- .../python-docx-1.1.0-GCCcore-13.2.0.eb | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 easybuild/easyconfigs/p/python-docx/python-docx-1.1.0-GCCcore-13.2.0.eb diff --git a/easybuild/easyconfigs/p/python-docx/python-docx-1.1.0-GCCcore-13.2.0.eb b/easybuild/easyconfigs/p/python-docx/python-docx-1.1.0-GCCcore-13.2.0.eb new file mode 100644 index 00000000000..04ced50700a --- /dev/null +++ b/easybuild/easyconfigs/p/python-docx/python-docx-1.1.0-GCCcore-13.2.0.eb @@ -0,0 +1,30 @@ +easyblock = 'PythonPackage' + +name = 'python-docx' +version = '1.1.0' + +homepage = 'https://python-docx.readthedocs.io/en/latest/' +description = 'python-docx is a Python library for creating and updating Microsoft Word (.docx) files' + +toolchain = {'name': 'GCCcore', 'version': '13.2.0'} + +source_urls = [PYPI_LOWER_SOURCE] +sources = [SOURCELOWER_TAR_GZ] +checksums = ['5829b722141cf1ab79aedf0c34d9fe9924b29764584c0f2164eb2b02dcdf17c9'] + +builddependencies = [ + ('binutils', '2.40'), +] + +dependencies = [ + ('Python', '3.11.5'), + ('lxml', '4.9.3'), +] + +use_pip = True +sanity_pip_check = True +download_dep_fail = True + +options = {'modulename': 'docx'} + +moduleclass = 'tools'