summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pygresql/package.py
blob: 863970b5303a12a1960f88d9540b49e917b87253 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2023 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.package import *


class PyPygresql(PythonPackage):
    """PyGreSQL is an open-source Python module that interfaces to a
    PostgreSQL database"""

    homepage = "http://www.pygresql.org"
    url = "http://www.pygresql.org/files/PyGreSQL-5.0.5.tar.gz"

    version("5.0.5", sha256="ff5e76b840600d4912b79daf347b44274a1c0368663e7b57529c406f8426479c")

    depends_on("py-setuptools", type="build")
    depends_on("postgresql", type=("build", "run"))