diff options
author | Sinan81 <sbulut@3vgeomatics.com> | 2019-08-27 00:20:37 -0700 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2019-08-29 13:56:10 -0700 |
commit | d882785c9eb496175dffc8ee4336c225af59a446 (patch) | |
tree | 983e477b651e86efb3556fa905d1f8e282982976 | |
parent | 1f56c1e647266235346f7d7e70980b3e81f5e2e5 (diff) | |
download | spack-d882785c9eb496175dffc8ee4336c225af59a446.tar.gz spack-d882785c9eb496175dffc8ee4336c225af59a446.tar.bz2 spack-d882785c9eb496175dffc8ee4336c225af59a446.tar.xz spack-d882785c9eb496175dffc8ee4336c225af59a446.zip |
new package: py-python-jenkins
-rw-r--r-- | var/spack/repos/builtin/packages/py-python-jenkins/package.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-jenkins/package.py b/var/spack/repos/builtin/packages/py-python-jenkins/package.py new file mode 100644 index 0000000000..cc9836e5ef --- /dev/null +++ b/var/spack/repos/builtin/packages/py-python-jenkins/package.py @@ -0,0 +1,22 @@ +# 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 PyPythonJenkins(PythonPackage): + """Python bindings for the remote Jenkins API""" + + homepage = "https://opendev.org/jjb/python-jenkins/" + url = "https://pypi.io/packages/source/p/python-jenkins/python-jenkins-1.5.0.tar.gz" + + version('1.5.0', sha256='0b11f7c1dffc48579afefa8a310cba5b1c98785b9132892ff8cf5312f32ebc90') + version('1.0.2', sha256='54aba30cf49f78f9eb64e9717ad8049dacf090731a3e0c27e6035f9ec52ff78e') + + depends_on('py-setuptools', type='build') + depends_on('py-pbr@0.8.2:', type=('build', 'run')) + depends_on('py-six@1.3.0:', type='run') + depends_on('py-multi-key-dict', type='run') + depends_on('py-requests', type='run') |