summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-localcider/package.py
blob: 0a6ac349af4f91a34f2340fb509f80d473f7f352 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

from spack import *


class PyLocalcider(PythonPackage):
    """Tools for calculating sequence properties of disordered proteins"""

    homepage = "https://pappulab.github.io/localCIDER"
    pypi = "localcider/localcider-0.1.14.tar.gz"

    version('0.1.14', sha256='54ff29e8a011947cca5df79e96f3c69a76c49c4db41dcf1608663992be3e3f5f')

    depends_on('py-setuptools', type='build')
    depends_on('py-numpy',        type=('build', 'run'))
    depends_on('py-matplotlib',   type=('build', 'run'))
    depends_on('py-scipy',        type=('build', 'run'))