diff options
author | Joe Koning <koning@users.noreply.github.com> | 2019-11-23 10:12:03 -0800 |
---|---|---|
committer | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2019-11-23 19:12:03 +0100 |
commit | c7472e0cbe97367ec47af18d0581612caf41f194 (patch) | |
tree | 895758f4b6df74648bd430dcf625c756c7cd3563 /var | |
parent | e5588880d58b5482b37ad9785a08a71c7cbe7abe (diff) | |
download | spack-c7472e0cbe97367ec47af18d0581612caf41f194.tar.gz spack-c7472e0cbe97367ec47af18d0581612caf41f194.tar.bz2 spack-c7472e0cbe97367ec47af18d0581612caf41f194.tar.xz spack-c7472e0cbe97367ec47af18d0581612caf41f194.zip |
Add the py-humanfriendly package (#13853)
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-humanfriendly/package.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-humanfriendly/package.py b/var/spack/repos/builtin/packages/py-humanfriendly/package.py new file mode 100644 index 0000000000..592b16edf2 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-humanfriendly/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 PyHumanfriendly(PythonPackage): + """Human friendly output for text interfaces using Python""" + + homepage = "https://pypi.org/project/humanfriendly/" + url = "https://files.pythonhosted.org/packages/26/71/e7daf57e819a70228568ff5395fdbc4de81b63067b93167e07825fcf0bcf/humanfriendly-4.18.tar.gz" + + version('4.18', sha256='33ee8ceb63f1db61cce8b5c800c531e1a61023ac5488ccde2ba574a85be00a85') + + depends_on('py-setuptools', type='build') |