summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-shiboken2/package.py
blob: 8e5c1c5e28b75677df06d24c1a52b23ab8a9fafb (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
# 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 platform

from spack import *


class PyShiboken2(Package):
    """Python / C++ bindings helper module."""

    homepage = "https://www.pyside.org/"

    if platform.system() == "Linux" and platform.machine() == "x86_64":
        version('5.15.2',
                url="https://files.pythonhosted.org/packages/cp35.cp36.cp37.cp38.cp39/s/shiboken2/shiboken2-5.15.2-5.15.2-cp35.cp36.cp37.cp38.cp39-abi3-manylinux1_x86_64.whl",
                sha256='4aee1b91e339578f9831e824ce2a1ec3ba3a463f41fda8946b4547c7eb3cba86',
                expand=False)

    elif platform.system() == "Linux" and platform.machine() == "maxosx":
        version('5.15.2',
                url="https://files.pythonhosted.org/packages/cp35.cp36.cp37.cp38.cp39/s/shiboken2/shiboken2-5.15.2-5.15.2-cp35.cp36.cp37.cp38.cp39-abi3-macosx_10_13_intel.whl",
                sha256='edc12a4df2b5be7ca1e762ab94e331ba9e2fbfe3932c20378d8aa3f73f90e0af',
                expand=False)

    extends('python')
    depends_on('py-pip', type='build')

    depends_on('python@3.5:3.9', type=('build', 'run'))

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