Skip to content
Snippets Groups Projects
Unverified Commit 8b057f40 authored by Xiao Gui's avatar Xiao Gui
Browse files

added maintainers, added test

parent 62284e60
No related branches found
No related tags found
3 merge requests!357create new experimental release,!352added maintainers, added test,!351Add siibra package
...@@ -7,8 +7,7 @@ class PyNeuroglancerScripts(PythonPackage): ...@@ -7,8 +7,7 @@ class PyNeuroglancerScripts(PythonPackage):
homepage = "https://github.com/HumanBrainProject/neuroglancer-scripts" homepage = "https://github.com/HumanBrainProject/neuroglancer-scripts"
pypi = "neuroglancer-scripts/neuroglancer-scripts-1.1.0.tar.gz" pypi = "neuroglancer-scripts/neuroglancer-scripts-1.1.0.tar.gz"
# TODO maintainers = ['Yann Leprince']
# maintainers = ['username']
version('1.1.0', sha256='395a3565808136950a1e3296b43eeda13a0108d2286eba2b2924b33c3b3abc70') version('1.1.0', sha256='395a3565808136950a1e3296b43eeda13a0108d2286eba2b2924b33c3b3abc70')
version('1.0.0', sha256='524c0e3a3faebaf3952953f8097af347655bed3e70b3a4bc4043a6f216db7d28') version('1.0.0', sha256='524c0e3a3faebaf3952953f8097af347655bed3e70b3a4bc4043a6f216db7d28')
...@@ -24,4 +23,6 @@ class PyNeuroglancerScripts(PythonPackage): ...@@ -24,4 +23,6 @@ class PyNeuroglancerScripts(PythonPackage):
depends_on('py-requests', type=('build', 'run')) depends_on('py-requests', type=('build', 'run'))
depends_on('py-scikit-image', type=('build', 'run')) depends_on('py-scikit-image', type=('build', 'run'))
depends_on('py-tqdm', type=('build', 'run')) depends_on('py-tqdm', type=('build', 'run'))
# Not needed for the purpose siibra-python
# depends_on('py-imagecodecs', type=('build', 'run')) # TODO: had some issues # depends_on('py-imagecodecs', type=('build', 'run')) # TODO: had some issues
...@@ -7,8 +7,7 @@ class PySiibra(PythonPackage): ...@@ -7,8 +7,7 @@ class PySiibra(PythonPackage):
homepage = "https://github.com/FZJ-INM1-BDA/siibra-python" homepage = "https://github.com/FZJ-INM1-BDA/siibra-python"
pypi = "siibra/siibra-0.4a57.tar.gz" pypi = "siibra/siibra-0.4a57.tar.gz"
# TODO maintainers = ['x.gui@fz-juelich.de', 's.koehnen@fz-juelich.de', 't.dickscheid@fz-juelich.de']
# maintainers = ['username']
version("0.4a57", sha256="53983c4baab84abe5dd6928c320ce87433cab02b5ed992995f0a17661c93dbff") version("0.4a57", sha256="53983c4baab84abe5dd6928c320ce87433cab02b5ed992995f0a17661c93dbff")
version("0.4a56", sha256="4c03d8a94c73a233e216103fa7090d057db03b1806027fabde38e8f83b852d78") version("0.4a56", sha256="4c03d8a94c73a233e216103fa7090d057db03b1806027fabde38e8f83b852d78")
...@@ -32,3 +31,12 @@ class PySiibra(PythonPackage): ...@@ -32,3 +31,12 @@ class PySiibra(PythonPackage):
depends_on('py-nilearn', type=('build', 'run')) depends_on('py-nilearn', type=('build', 'run'))
depends_on('py-typing-extensions', type=('build', 'run'), when='^python@:3.7') depends_on('py-typing-extensions', type=('build', 'run'), when='^python@:3.7')
depends_on('py-filelock', type=('build', 'run')) depends_on('py-filelock', type=('build', 'run'))
depends_on('py-pytest', type='test')
# @run_after('install')
# @on_package_attributes(run_tests=True)
# def install_test(self):
# with working_dir('spack-test', create=True):
# pytest("-rx")
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment