summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorLydéric Debusschère <lyderic.de@gmail.com>2023-10-16 13:51:11 +0200
committerGitHub <noreply@github.com>2023-10-16 06:51:11 -0500
commite22117304e2768ac203d7c5a1a476ae723486ef6 (patch)
tree4e338d92e6f205d6a486baa9a2d628161e4ff1ec /var
parent10999c02836fa6a510871d24ad6548d12d2b72ae (diff)
downloadspack-e22117304e2768ac203d7c5a1a476ae723486ef6.tar.gz
spack-e22117304e2768ac203d7c5a1a476ae723486ef6.tar.bz2
spack-e22117304e2768ac203d7c5a1a476ae723486ef6.tar.xz
spack-e22117304e2768ac203d7c5a1a476ae723486ef6.zip
[add] py-cylc-uiserver: new recipe (#39983)
* [add] py-cylc-uiserver: new recipe * py-cylc-uiserver: remove version constraint on the dependence python * [fix] py-cylc-uiserver: add forgotten dependence py-graphql-core --------- Co-authored-by: LydDeb <lyderic.debusschere.tgcc@cea.fr>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-cylc-uiserver/package.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-cylc-uiserver/package.py b/var/spack/repos/builtin/packages/py-cylc-uiserver/package.py
new file mode 100644
index 0000000000..57345f8a11
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-cylc-uiserver/package.py
@@ -0,0 +1,32 @@
+# 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 PyCylcUiserver(PythonPackage):
+ """Cylc UI Server."""
+
+ homepage = "https://github.com/cylc/cylc-uiserver/"
+ pypi = "cylc-uiserver/cylc-uiserver-1.3.0.tar.gz"
+
+ maintainers("LydDeb")
+
+ version("1.3.0", sha256="f3526e470c7ac2b61bf69e9b8d17fc7a513392219d28baed9b1166dcc7033d7a")
+
+ depends_on("py-wheel", type="build")
+ depends_on("py-setuptools@40.9.0:", type="build")
+ depends_on("py-cylc-flow@8.2", type=("build", "run"))
+ depends_on("py-ansimarkup@1.0.0:", type=("build", "run"))
+ depends_on("py-graphene", type=("build", "run"))
+ depends_on("py-graphene-tornado@2.6", type=("build", "run"))
+ depends_on("py-graphql-ws@0.4.4", type=("build", "run"))
+ depends_on("py-jupyter-server@1.10.2:1", type=("build", "run"))
+ depends_on("py-requests", type=("build", "run"))
+ depends_on("py-tornado@6.1.0:", type=("build", "run"))
+ depends_on("py-traitlets@5.2.1:", type=("build", "run"))
+ depends_on("py-pyzmq", type=("build", "run"))
+ depends_on("py-graphql-core", type=("build", "run"))
+ depends_on("py-rx@:1", type=("build", "run"))