diff options
author | Bryan Herman <63422190+bryanherman@users.noreply.github.com> | 2021-02-02 16:41:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-02 15:41:21 -0600 |
commit | 182ab78940258a53ba65f51b0db4564d46c42e4a (patch) | |
tree | a56032de4e771dc3168fc0fd03eaf5998edbebc3 /var | |
parent | 040204c2615271a853bf8846eb9e78e4bec35fc0 (diff) | |
download | spack-182ab78940258a53ba65f51b0db4564d46c42e4a.tar.gz spack-182ab78940258a53ba65f51b0db4564d46c42e4a.tar.bz2 spack-182ab78940258a53ba65f51b0db4564d46c42e4a.tar.xz spack-182ab78940258a53ba65f51b0db4564d46c42e4a.zip |
add py-python-fsutil recipe (#21449)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-python-fsutil/package.py | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-python-fsutil/package.py b/var/spack/repos/builtin/packages/py-python-fsutil/package.py new file mode 100644 index 0000000000..eda87766f2 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-python-fsutil/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 PyPythonFsutil(PythonPackage): + """file-system utilities for lazy devs.""" + + homepage = "https://github.com/fabiocaccamo/python-fsutil" + pypi = "python-fsutil/python-fsutil-0.4.0.tar.gz" + + version('0.4.0', sha256='873eceb11fb488fc2d7675cd1bc74a743502f674f0be88f5e7b920c7baeefed6') + + depends_on('python@2.7:2.8,3.5:', type=('build', 'run')) + depends_on('py-requests', type=('build', 'run')) + depends_on('py-setuptools', type='build') |