summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2020-11-26 18:05:39 -0600
committerGitHub <noreply@github.com>2020-11-26 18:05:39 -0600
commitd2a83b8318eb39ce52b1279f929e91929589cc06 (patch)
treec5d3a6f53678b5e8f423d20827ad54664eecb3a2
parent44665cb4e6e3a92f8b97d9612224ef52dce396df (diff)
downloadspack-d2a83b8318eb39ce52b1279f929e91929589cc06.tar.gz
spack-d2a83b8318eb39ce52b1279f929e91929589cc06.tar.bz2
spack-d2a83b8318eb39ce52b1279f929e91929589cc06.tar.xz
spack-d2a83b8318eb39ce52b1279f929e91929589cc06.zip
py-vcstools: add new package (#20114)
-rw-r--r--var/spack/repos/builtin/packages/py-vcstools/package.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-vcstools/package.py b/var/spack/repos/builtin/packages/py-vcstools/package.py
new file mode 100644
index 0000000000..13d1146abd
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-vcstools/package.py
@@ -0,0 +1,17 @@
+# 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)
+
+
+class PyVcstools(PythonPackage):
+ """VCS/SCM source control library for svn, git, hg, and bzr."""
+
+ homepage = "https://wiki.ros.org/vcstools"
+ url = "https://pypi.io/packages/source/v/vcstools/vcstools-0.1.42.tar.gz"
+
+ version('0.1.42', sha256='9e48d8ed8b0fdda739af56e05bf10da1a509cb7d4950a19c73264c770802777a')
+
+ depends_on('py-setuptools', type='build')
+ depends_on('py-pyyaml', type=('build', 'run'))
+ depends_on('py-python-dateutil', type=('build', 'run'))