diff options
author | Desmond Orton <odesmond21@gmail.com> | 2021-09-03 02:23:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-03 09:23:01 +0200 |
commit | 551766e3c611152bc7e9f402831314625539e9b1 (patch) | |
tree | c3115b4f608fab77aed14b3b0cc723174e3e61e1 | |
parent | 35fe188d22b4d2b7515f1feed8a2018ce25cb529 (diff) | |
download | spack-551766e3c611152bc7e9f402831314625539e9b1.tar.gz spack-551766e3c611152bc7e9f402831314625539e9b1.tar.bz2 spack-551766e3c611152bc7e9f402831314625539e9b1.tar.xz spack-551766e3c611152bc7e9f402831314625539e9b1.zip |
py-pathtools: add new package (#25749)
-rw-r--r-- | var/spack/repos/builtin/packages/py-pathtools/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pathtools/package.py b/var/spack/repos/builtin/packages/py-pathtools/package.py new file mode 100644 index 0000000000..18d5608738 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pathtools/package.py @@ -0,0 +1,19 @@ +# Copyright 2013-2021 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 PyPathtools(PythonPackage): + """Path utilities for Python""" + + homepage = "https://github.com/gorakhargosh/pathtools" + pypi = "pathtools/pathtools-0.1.2.tar.gz" + + maintainers = ['dorton21'] + + version('0.1.2', sha256='7c35c5421a39bb82e58018febd90e3b6e5db34c5443aaaf742b3f33d4655f1c0') + + depends_on('py-setuptools', type='build') |