From 735198dcf7b221a270fd93c09ec88076dc6aaddb Mon Sep 17 00:00:00 2001 From: Alex Domingo Date: Mon, 7 Nov 2022 11:13:25 +0100 Subject: [PATCH] adding easyconfigs: Panedr-0.7.0-foss-2021a.eb --- .../p/Panedr/Panedr-0.7.0-foss-2021a.eb | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 easybuild/easyconfigs/p/Panedr/Panedr-0.7.0-foss-2021a.eb diff --git a/easybuild/easyconfigs/p/Panedr/Panedr-0.7.0-foss-2021a.eb b/easybuild/easyconfigs/p/Panedr/Panedr-0.7.0-foss-2021a.eb new file mode 100644 index 000000000000..1b9dbb3a29da --- /dev/null +++ b/easybuild/easyconfigs/p/Panedr/Panedr-0.7.0-foss-2021a.eb @@ -0,0 +1,35 @@ +easyblock = 'PythonBundle' + +name = 'Panedr' +version = '0.7.0' + +homepage = 'https://github.com/MDAnalysis/panedr' +description = """Panedr uses the Pyedr library to read a Gromacs EDR binary +energy XDR file and returns its contents as a pandas dataframe.""" + +toolchain = {'name': 'foss', 'version': '2021a'} + +dependencies = [ + ('Python', '3.9.5'), + ('SciPy-bundle', '2021.05'), + ('tqdm', '4.61.2'), +] + +use_pip = True + +exts_list = [ + ('pyedr', version, { + 'checksums': ['2906fa86950a519ada711520cb18aa3bb49df5d992473f0c7b5359ba226c7ac2'], + # remove references to out-of-tree files + 'preinstallopts': "sed -i '8,10d' setup.cfg && " + }), + ('panedr', version, { + 'checksums': ['ef1f3163cd88ff5d69f9aabc1e5850a47cc5325d8421e57510bfa7cae5956838'], + # remove references to out-of-tree files + 'preinstallopts': "sed -i '8,10d' setup.cfg && " + }), +] + +sanity_pip_check = True + +moduleclass = 'tools'