summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-itolapi/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builtin/packages/py-itolapi/package.py')
-rw-r--r--var/spack/repos/builtin/packages/py-itolapi/package.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-itolapi/package.py b/var/spack/repos/builtin/packages/py-itolapi/package.py
new file mode 100644
index 0000000000..95b1922544
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-itolapi/package.py
@@ -0,0 +1,21 @@
+# 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 PyItolapi(PythonPackage):
+ """API for interacting with itol.embl.de"""
+
+ homepage = "https://github.com/albertyw/itolapi"
+ pypi = "itolapi/itolapi-4.1.2.tar.gz"
+
+ maintainers("snehring")
+
+ version("4.1.2", sha256="37a866a117a80d3d72a6eb6b2cba30444751c644cc6bc4242f050750375a8397")
+
+ depends_on("py-setuptools", type="build")
+
+ depends_on("py-requests@2", type=("build", "run"))