From 53c17d157f88d3c7647726a49300354e52567443 Mon Sep 17 00:00:00 2001 From: Eleni Mathioulaki <emathioulaki@athenarc.gr> Date: Thu, 4 May 2023 12:34:56 +0000 Subject: [PATCH] add ipyparallel 8.4.1 (to drop dependency of setuptools) --- packages/py-ipyparallel/package.py | 45 ++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 packages/py-ipyparallel/package.py diff --git a/packages/py-ipyparallel/package.py b/packages/py-ipyparallel/package.py new file mode 100644 index 00000000..84537a0c --- /dev/null +++ b/packages/py-ipyparallel/package.py @@ -0,0 +1,45 @@ +# 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 PyIpyparallel(PythonPackage): + """IPython's architecture for parallel and distributed computing.""" + + homepage = "https://github.com/ipython/ipyparallel" + pypi = "ipyparallel/ipyparallel-7.1.0.tar.gz" + + version("8.4.1", sha256="670bbe05755381742e1ea01177dc428ff8f3e94af1f0d5642c9d19f37ca8289b") + version("8.0.0", sha256="95305a886f2c42e9603c034ea684e5c031d9d4222c66ed6d85eb3ae15d631e4b") + version("7.1.0", sha256="ea756df0d2485bac19cccb0dbf4cafbc855c922b9b5905b4906e6cfac8b3c648") + version("6.3.0", sha256="0a97b276c62db633e9e97a816282bdd166f9df74e28204f0c8fa54b71944cfdc") + version("6.2.5", sha256="33416179665f9c2f567011ab1a618232bc32c0845c0a3a5c388f6c71048bc053") + version("6.2.4", sha256="76c7b028962b0ba762e4e45b450ee3a4353e7221526a8af812e817d7ef6ac065") + + depends_on("python@3.6:", type=("build", "run"), when="@7.1:") + depends_on("python@3.5:", type=("build", "run"), when="@6.3:") + depends_on("python@2.7,3.4:", type=("build", "run")) + + depends_on("py-jupyterlab@3.0:3", type="build", when="@7.1:") + depends_on("py-packaging", type="build", when="@7.1:8.0.0") + depends_on("py-setuptools@40.8:", type="build", when="@7.1:8.2") + depends_on("py-setuptools@:60", type="build", when="@:8.2.0") + depends_on("py-hatchling@0.25:", type="build", when="@8.4:") + + depends_on("py-ipython-genutils", type=("build", "run"), when="@:6.3") + depends_on("py-entrypoints", type=("build", "run"), when="@7.1:") + depends_on("py-decorator", type=("build", "run")) + depends_on("py-pyzmq@18:", type=("build", "run"), when="@7.1:") + depends_on("py-pyzmq@13:", type=("build", "run")) + depends_on("py-traitlets@4.3:", type=("build", "run")) + depends_on("py-ipython@4:", type=("build", "run")) + depends_on("py-jupyter-client", type=("build", "run")) + depends_on("py-ipykernel@4.4:", type=("build", "run")) + depends_on("py-tornado@5.1:", type=("build", "run"), when="@7.1:") + depends_on("py-tornado@4:", type=("build", "run")) + depends_on("py-psutil", type=("build", "run"), when="@7.1:") + depends_on("py-python-dateutil@2.1:", type=("build", "run")) + depends_on("py-tqdm", type=("build", "run"), when="@7.1:") \ No newline at end of file -- GitLab