diff options
author | Sinan <sbulutw@gmail.com> | 2020-09-02 08:28:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-02 10:28:33 -0500 |
commit | 712e7bd2bf9c90ccdd77854b559bc8e2d0b7a815 (patch) | |
tree | 30a612a25e0a977dcbdcd4352f9d87286999a1b2 /var | |
parent | aa8e046073abb97de4353e2a0b4c5c54ef3d2935 (diff) | |
download | spack-712e7bd2bf9c90ccdd77854b559bc8e2d0b7a815.tar.gz spack-712e7bd2bf9c90ccdd77854b559bc8e2d0b7a815.tar.bz2 spack-712e7bd2bf9c90ccdd77854b559bc8e2d0b7a815.tar.xz spack-712e7bd2bf9c90ccdd77854b559bc8e2d0b7a815.zip |
new package: py-gitdb (#18386)
* new package: py-gitdb
* Update var/spack/repos/builtin/packages/py-gitdb/package.py
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
* Update package.py
Co-authored-by: sbulut <sbulut@3vgeomatics.com>
Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-gitdb/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-gitdb/package.py b/var/spack/repos/builtin/packages/py-gitdb/package.py new file mode 100644 index 0000000000..50670dbcbf --- /dev/null +++ b/var/spack/repos/builtin/packages/py-gitdb/package.py @@ -0,0 +1,20 @@ +# Copyright 2013-2020 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 PyGitdb(PythonPackage): + """The GitDB project implements interfaces to allow read and write access + to git repositories.""" + + homepage = "https://gitdb.readthedocs.io" + url = "https://pypi.io/packages/source/g/gitdb/gitdb-4.0.5.tar.gz" + + version('4.0.5', sha256='c9e1f2d0db7ddb9a704c2a0217be31214e91a4fe1dea1efad19ae42ba0c285c9') + + depends_on('python@3.4:', type=('build', 'run')) + depends_on('py-setuptools', type='build') + depends_on('py-smmap@3.0.1:3.999', type=('build', 'run')) |