summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-sierrapy/package.py33
1 files changed, 33 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-sierrapy/package.py b/var/spack/repos/builtin/packages/py-sierrapy/package.py
new file mode 100644
index 0000000000..d17262e327
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-sierrapy/package.py
@@ -0,0 +1,33 @@
+# 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)
+
+from spack import *
+
+
+class PySierrapy(PythonPackage):
+ """A Client of HIVdb Sierra GraphQL Webservice"""
+
+ homepage = "https://github.com/hivdb/sierra-client/tree/master/python"
+ pypi = "sierrapy/sierrapy-0.3.0.tar.gz"
+
+ maintainers = ['dorton21']
+
+ version('0.3.0', sha256='82474b3815d79d16a480b0cc70b9f7075430ff4990f33306c880b240a3141b6e')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-certifi@2020.4.5.1', type='build')
+
+ depends_on('py-chardet@3.0.4', type=('build', 'run'))
+ depends_on('py-click@7.1.2', type=('build', 'run'))
+ depends_on('py-gql@0.4.0', type=('build', 'run'))
+ depends_on('py-graphql-core@2.3.2', type=('build', 'run'))
+ depends_on('py-idna@2.9', type=('build', 'run'))
+ depends_on('py-rx@1.6.1', type=('build', 'run'))
+ depends_on('py-promise@2.3', type=('build', 'run'))
+ depends_on('py-requests@2.23.0', type=('build', 'run'))
+ depends_on('py-six@1.14.0', type=('build', 'run'))
+ depends_on('py-tqdm@4.46.0', type=('build', 'run'))
+ depends_on('py-voluptuous@0.11.7', type=('build', 'run'))
+ depends_on('py-urllib3@1.25.9', type=('build', 'run'))