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>
This commit is contained in:
Sinan 2020-09-02 08:28:33 -07:00 committed by GitHub
parent aa8e046073
commit 712e7bd2bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'))