Package py-biom-format fixes (#8727)

* py-biom-format: needs py-setuptools at runtime
* py-biom-format: needs py-pyqi
This commit is contained in:
Levi Baber 2018-08-02 12:51:51 -05:00 committed by scheibelp
parent 6f2a739053
commit c94109c34c

View File

@ -37,7 +37,7 @@ class PyBiomFormat(PythonPackage):
variant('h5py', default=True, description='For use with BIOM 2.0+ files')
depends_on('py-setuptools', type='build')
depends_on('py-setuptools', type=('build', 'run'))
depends_on('py-cython', type='build')
depends_on('py-h5py', type=('build', 'run'), when='+h5py')
depends_on('py-click', type=('build', 'run'))
@ -46,3 +46,4 @@ class PyBiomFormat(PythonPackage):
depends_on('py-scipy@0.13.0:', type=('build', 'run'))
depends_on('py-pandas@0.19.2:', type=('build', 'run'))
depends_on('py-six@1.10.0:', type=('build', 'run'))
depends_on('py-pyqi', type=('build', 'run'))