27 lines
822 B
Python
27 lines
822 B
Python
# Copyright Spack Project Developers. See COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack.package import *
|
|
|
|
|
|
class PyBiopandas(PythonPackage):
|
|
"""Working with molecular structures in pandas DataFrames"""
|
|
|
|
homepage = "https://rasbt.github.io/biopandas"
|
|
pypi = "biopandas/biopandas-0.2.5.tar.gz"
|
|
git = "https://github.com/rasbt/biopandas.git"
|
|
|
|
# Note that the source package on PyPi is broken as it
|
|
# is missing the requirements.txt so we have to download
|
|
# from github
|
|
|
|
license("BSD-3-Clause")
|
|
|
|
version("0.2.5", branch="v0.2.5")
|
|
|
|
depends_on("python@3.5:", type=("build", "run"))
|
|
depends_on("py-setuptools", type="build")
|
|
depends_on("py-pandas@0.24.2:", type=("build", "run"))
|
|
depends_on("py-numpy@1.16.2:", type=("build", "run"))
|