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

from spack import *


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

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

    if sys.platform.startswith('linux'):
        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 sys.platform == 'darwin':
        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)

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