summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-stdlib-list/package.py
blob: f9d5b41fb02f4a1cd87b2ed0f984e02d5a5e0df2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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 PyStdlibList(PythonPackage):
    """This package includes lists of all of the standard libraries
    for Python, along with the code for scraping the official Python
    docs to get said lists."""

    pypi = "stdlib-list/stdlib-list-0.6.0.tar.gz"

    license("MIT")

    version("0.6.0", sha256="133cc99104f5a4e1604dc88ebb393529bd4c2b99ae7e10d46c0b596f3c67c3f0")

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