summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-stsci-distutils/package.py
blob: a8d3eab8fa1aece21c708ca920d225a4f9bd6f5e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright 2013-2024 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 PyStsciDistutils(PythonPackage):
    """This package contains utilities used to
    package some of STScI's Python projects."""

    homepage = "https://github.com/spacetelescope/stsci.distutils"
    url = "https://github.com/spacetelescope/stsci.distutils/archive/0.3.8.tar.gz"

    version("0.3.8", sha256="a52f3ec3b392a9cecd98d143b678c27346cbfa8f34c34698821d7e167907edce")

    depends_on("py-setuptools", type="build")
    depends_on("py-d2to1", type="build")