diff options
author | Andreas Baumbach <healther@users.noreply.github.com> | 2019-11-05 02:39:25 +0100 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2019-11-04 19:39:25 -0600 |
commit | 527d639b0eaddd949ac5dc2390be42f29252cfd0 (patch) | |
tree | 3ed4dea997f8dae9cb5278e098b9f8f8b3f3ce5e /var | |
parent | 4f5d3770c72fcf3fac65c02f1a5e98e550f77d04 (diff) | |
download | spack-527d639b0eaddd949ac5dc2390be42f29252cfd0.tar.gz spack-527d639b0eaddd949ac5dc2390be42f29252cfd0.tar.bz2 spack-527d639b0eaddd949ac5dc2390be42f29252cfd0.tar.xz spack-527d639b0eaddd949ac5dc2390be42f29252cfd0.zip |
new package py-testpath (#13417)
* new package py-testpath
dependency of py-nbconvert
* py-testpath: fix flake8
* Remove the unnecessary pip dependency
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-testpath/package.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-testpath/package.py b/var/spack/repos/builtin/packages/py-testpath/package.py new file mode 100644 index 0000000000..113fa74c23 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-testpath/package.py @@ -0,0 +1,16 @@ +# Copyright 2013-2019 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 PyTestpath(PythonPackage): + """Testpath is a collection of utilities for Python code working with + files and commands.""" + + homepage = "https://github.com/jupyter/testpath" + url = "https://pypi.io/packages/source/t/testpath/testpath-0.4.2.tar.gz" + + version('0.4.2', sha256='b694b3d9288dbd81685c5d2e7140b81365d46c29f5db4bc659de5aa6b98780f8') |