
* [py-singledispatchmethod] new package * [py-singledispatchmethod] added missing dependency * new package required for qiskit * [py-rustworkx] - removed redundant dependency on py-wheel - added dependency on py-numpy * [py-websocket-client] added version 1.5.1 * modified it is ahead of upstream * [py-qiskit-terra] - flake8 - removed duplicate dependencies - fixed acceptable range for py-symengine * [py-qiskit-terra] tweedledum no longer needed * [py-qiskit-terra] depends on py-singledispatchmethod * [py-qiskit-ibm-provider] new package --------- Co-authored-by: Sid Pendelberry <sid@rit.edu>
63 lines
3.2 KiB
Python
63 lines
3.2 KiB
Python
# 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 PyQiskitTerra(PythonPackage):
|
|
"""Qiskit is an open-source SDK for working with quantum computers
|
|
at the level of extended quantum circuits, operators, and
|
|
algorithms."""
|
|
|
|
homepage = "https://github.com/Qiskit/qiskit-terra"
|
|
pypi = "qiskit-terra/qiskit-terra-0.18.3.tar.gz"
|
|
|
|
version("0.23.3", sha256="8f2f61622c28ad38db95d9bbacb03b9743923581545df08eb5047fa86f4de198")
|
|
version("0.22.2", sha256="efd212cd98479ebedc8cc1f93d4eb8039f21c07bd39a62065b584e02d72e632d")
|
|
version("0.18.3", sha256="8737c8f1f4c6f29ec2fb02d73023f4854a396c33f78f4629a861a3e48fc789cc")
|
|
|
|
depends_on("py-setuptools", type="build")
|
|
depends_on("py-numpy@1.17:", type=("build", "run"))
|
|
depends_on("py-ply@3.10:", type=("build", "run"))
|
|
depends_on("py-sympy@1.3:", type=("build", "run"))
|
|
depends_on("py-dill@0.3:", type=("build", "run"))
|
|
depends_on("py-python-dateutil@2.8.0:", type=("build", "run"))
|
|
depends_on("py-stevedore@3.0.0:", type=("build", "run"))
|
|
depends_on("py-psutil@5:", type=("build", "run"))
|
|
|
|
with when("@0.18.3"):
|
|
depends_on("python@3.6:", type=("build", "run"))
|
|
depends_on("py-cython@0.27.1:", type="build")
|
|
depends_on("py-jsonschema@2.6:", type=("build", "run"))
|
|
depends_on("py-retworkx@0.9.0:", type=("build", "run"))
|
|
depends_on("py-scipy@1.4:", type=("build", "run"))
|
|
depends_on("py-fastjsonschema@2.10:", type=("build", "run"))
|
|
depends_on("py-python-constraint@1.4:", type=("build", "run"))
|
|
depends_on("py-symengine@0.7:", type=("build", "run"))
|
|
depends_on("py-tweedledum@1.1:1", type=("build", "run"), when="^python@:3.11")
|
|
|
|
with when("@0.22.2"):
|
|
depends_on("python@3.7:", type=("build", "run"))
|
|
depends_on("py-setuptools-rust", type="build")
|
|
depends_on("py-retworkx@0.11.0:", type=("build", "run"))
|
|
depends_on("py-scipy@1.5:", type=("build", "run"))
|
|
depends_on("py-symengine@0.9:", type=("build", "run"))
|
|
depends_on("py-typing-extensions", when="^python@:3.7", type=("build", "run"))
|
|
depends_on("py-shared-memory38", when="^python@:3.7", type=("build", "run"))
|
|
depends_on("py-tweedledum@1.1:1", type=("build", "run"), when="^python@:3.11")
|
|
depends_on("py-importlib-metadata@:4", when="^python@:3.7", type=("build", "run"))
|
|
|
|
with when("@0.23.3"):
|
|
depends_on("python@3.7:", type=("build", "run"))
|
|
depends_on("py-setuptools-rust", type="build")
|
|
depends_on("py-rustworkx@0.12.0:", type=("build", "run"))
|
|
depends_on("py-scipy@1.5:", type=("build", "run"))
|
|
depends_on("py-symengine@0.9:", type=("build", "run"))
|
|
depends_on("py-typing-extensions", when="^python@:3.7", type=("build", "run"))
|
|
depends_on("py-shared-memory38", when="^python@:3.7", type=("build", "run"))
|
|
depends_on("py-importlib-metadata@:4", when="^python@:3.7", type=("build", "run"))
|
|
depends_on("py-singledispatchmethod", when="^python@:3.7", type=("build", "run"))
|