refine version specific dependencies

add py-bz2file, which needs to be created
This commit is contained in:
Owen Solberg 2019-09-07 21:36:16 -07:00
parent 7400f44caa
commit 70649da988

View File

@ -20,4 +20,6 @@ class PyXopen(PythonPackage):
version('0.1.1', '4e0e955546ee6bee4ea736b54623a671') version('0.1.1', '4e0e955546ee6bee4ea736b54623a671')
depends_on('py-setuptools', type='build') depends_on('py-setuptools', type='build')
depends_on('python@2.6:', type=('build', 'run')) depends_on('py-bz2file', type=('build','run'), when='@0.5:')
depends_on('python@2.7,3.4:', type=('build', 'run'), when='@0.5:')
depends_on('python@2.6:2.99,3.3:', type=('build', 'run'), when='@0.1.1')