summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-pylab-sdk/package.py
blob: 3501a0b0345b0336c8371f9945d76f72da9cc6df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# 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 PyPylabSdk(PythonPackage):
    """A development kit that collects simple utilities."""

    homepage = "https://github.com/PyLabCo/pylab-sdk"
    pypi = "pylab-sdk/pylab-sdk-1.3.2.tar.gz"

    license("MIT")

    version("1.3.2", sha256="ea53e97fec45ea15f65bd53da6b25dc16a9accf3a7f5decbaa970592d760148d")

    depends_on("python@3:", type=("build", "run"))

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

    depends_on("py-requests", type=("build", "run"))