summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
author健美猞猁 <weijianwen@gmail.com>2019-09-01 03:08:05 +0800
committerAdam J. Stewart <ajstewart426@gmail.com>2019-08-31 14:08:05 -0500
commit4a5d740eafd4716dee86fc606148a818b09fefca (patch)
tree494f20b555729e1818ed553856ce28db07eb4781 /var
parentbc56f87b09786b92b32cfe815182b45b0a06653e (diff)
downloadspack-4a5d740eafd4716dee86fc606148a818b09fefca.tar.gz
spack-4a5d740eafd4716dee86fc606148a818b09fefca.tar.bz2
spack-4a5d740eafd4716dee86fc606148a818b09fefca.tar.xz
spack-4a5d740eafd4716dee86fc606148a818b09fefca.zip
A new package: py-gdc-client. (#12672)
* A new package: py-gdc-client. * Flake8.
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-gdc-client/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-gdc-client/package.py b/var/spack/repos/builtin/packages/py-gdc-client/package.py
new file mode 100644
index 0000000000..b7acabbb5c
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-gdc-client/package.py
@@ -0,0 +1,18 @@
+# Copyright 2013-2019 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 PyGdcClient(PythonPackage):
+ """The gdc-client provides several convenience functions
+ over the GDC API which provides general download/upload via HTTPS."""
+
+ homepage = "https://github.com/NCI-GDC/gdc-client"
+ url = "https://github.com/NCI-GDC/gdc-client/archive/1.4.0.tar.gz"
+
+ version('1.4.0', sha256='3ae6664f9666c75ffbf3c883409cfa51333f61d23b7aa99010925a084b4c9582')
+
+ depends_on('py-setuptools', type='build')