Skip to content

Commit

Permalink
Merge pull request spack#6 in PKG/spack from package/py-msmtools to d…
Browse files Browse the repository at this point in the history
…evelop

* commit 'da8427ea74396be4298d936897b7b76468310094':
  py-msmtools: New package. Dependency of `PKG-4`.
  • Loading branch information
Fabricio Cannini committed Jul 12, 2019
2 parents d45f814 + da8427e commit 90271ed
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions var/spack/repos/vhpc/packages/py-msmtools/package.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Copyright 2013-2019 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 PyMsmtools(PythonPackage):
"""
an open source collection of algorithms for the estimation and analysis
of discrete state space Markov chains via Markov state models (MSM).
"""

homepage = "https://github.com/markovmodel/msmtools"
url = homepage + "/archive/v1.2.4.tar.gz"

version('1.2.4', sha256='64224318a723605daf1524a15724e2a4a13ed9cf43e7e37652b4c6bda7e69d44')

depends_on('py-setuptools', type='build')
depends_on('py-six', type='build')
depends_on('py-cython', type='build')
depends_on('py-decorator', type=('build', 'run'))
depends_on('py-numpy', type=('build', 'link', 'run'))
depends_on('py-scipy', type=('build', 'link', 'run'))


def build_args(self, spec, prefix):
args = []
return args

0 comments on commit 90271ed

Please sign in to comment.