diff options
author | Ryan Marcellino <67644978+myan-rarcellino-nnl@users.noreply.github.com> | 2022-08-22 17:29:16 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-22 14:29:16 -0700 |
commit | 95e8c4a6151ebb682aa4949fcb2722265e8af5dd (patch) | |
tree | a5dc3e8653fe2d36b4e445a69747bbe175dfe2c8 /var | |
parent | c92db8a22a968ae6fe62b9bd52df44567206346a (diff) | |
download | spack-95e8c4a6151ebb682aa4949fcb2722265e8af5dd.tar.gz spack-95e8c4a6151ebb682aa4949fcb2722265e8af5dd.tar.bz2 spack-95e8c4a6151ebb682aa4949fcb2722265e8af5dd.tar.xz spack-95e8c4a6151ebb682aa4949fcb2722265e8af5dd.zip |
New package: py-ghp-import (#32316)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-ghp-import/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-ghp-import/package.py b/var/spack/repos/builtin/packages/py-ghp-import/package.py new file mode 100644 index 0000000000..7fb42d2be9 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-ghp-import/package.py @@ -0,0 +1,19 @@ +# Copyright 2013-2022 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.package import * + + +class PyGhpImport(PythonPackage): + """Copy your docs directly to the gh-pages branch.""" + + homepage = "https://github.com/c-w/ghp-import" + pypi = "ghp-import/ghp-import-2.1.0.tar.gz" + + version("2.1.0", sha256="9c535c4c61193c2df8871222567d7fd7e5014d835f97dc7b7439069e2413d343") + + depends_on("py-setuptools", type="build") + depends_on("py-python-dateutil@2.8.1:", type=("build", "run")) |