diff options
author | wspear <wjspear@gmail.com> | 2019-02-01 16:24:44 -0600 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-02-01 16:24:44 -0600 |
commit | 43fae5b8076bd89398d08113f5999170d9782875 (patch) | |
tree | 5ac82fed25d015a3d5a6afb1c5bce8dd4d7812cd /var | |
parent | ec7c7332c06e0ca4a236074bccdd675abce690a2 (diff) | |
download | spack-43fae5b8076bd89398d08113f5999170d9782875.tar.gz spack-43fae5b8076bd89398d08113f5999170d9782875.tar.bz2 spack-43fae5b8076bd89398d08113f5999170d9782875.tar.xz spack-43fae5b8076bd89398d08113f5999170d9782875.zip |
New package: py-alembic (#10436)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-alembic/package.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-alembic/package.py b/var/spack/repos/builtin/packages/py-alembic/package.py new file mode 100644 index 0000000000..397dd40acc --- /dev/null +++ b/var/spack/repos/builtin/packages/py-alembic/package.py @@ -0,0 +1,17 @@ +# 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 PyAlembic(PythonPackage): + """Alembic is a database migrations tool.""" + + homepage = "https://pypi.org/project/alembic/" + url = "https://pypi.io/packages/source/a/alembic/alembic-1.0.7.tar.gz" + + version('1.0.7', sha256='16505782b229007ae905ef9e0ae6e880fddafa406f086ac7d442c1aaf712f8c2') + + depends_on('py-setuptools', type='build') |