summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-dotnetcore2/package.py
blob: 901f10bcc33307cefe405864be4f7f5f26f95ce3 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
# 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)

import sys

from spack.package import *


class PyDotnetcore2(PythonPackage):
    """.Net Core 2.1 runtime."""

    homepage = "https://github.com/dotnet/core"

    if sys.platform == "darwin":
        version(
            "2.1.14",
            sha256="68182f4b704db401b2012c10ed8a19561f8d487063632f8731c2e58960ca9242",
            expand=False,
            url="https://pypi.io/packages/py3/d/dotnetcore2/dotnetcore2-2.1.14-py3-none-macosx_10_9_x86_64.whl",
        )
    elif sys.platform.startswith("linux"):
        version(
            "2.1.14",
            sha256="d8d83ac30c22a0e48a9a881e117d98da17f95c4098cb9500a35e323b8e4ab737",
            expand=False,
            url="https://pypi.io/packages/py3/d/dotnetcore2/dotnetcore2-2.1.14-py3-none-manylinux1_x86_64.whl",
        )

    conflicts("target=ppc64:", msg="py-dotnetcore2 is only available for x86_64")
    conflicts("target=ppc64le:", msg="py-dotnetcore2 is only available for x86_64")
    conflicts("target=aarch64:", msg="py-dotnetcore2 is only available for x86_64")

    depends_on("python@3:", type=("build", "run"))
    depends_on("py-distro@1.2.0:", type=("build", "run"))