summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-dotnetcore2/package.py
blob: ee671dc5d4470d62b4cf9c85b005e0c9dd2cdd27 (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
# Copyright 2013-2021 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


class PyDotnetcore2(Package):
    """.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')

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

    def install(self, spec, prefix):
        pip = which('pip')
        pip('install', self.stage.archive_file, '--prefix={0}'.format(prefix))