add py-python-fsutil recipe (#21449)
This commit is contained in:
parent
040204c261
commit
182ab78940
1 changed files with 19 additions and 0 deletions
19
var/spack/repos/builtin/packages/py-python-fsutil/package.py
Normal file
19
var/spack/repos/builtin/packages/py-python-fsutil/package.py
Normal file
|
@ -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')
|
Loading…
Reference in a new issue