diff options
author | Jean-Paul Pelteret <jppelteret@gmail.com> | 2021-01-31 19:29:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-31 12:29:29 -0600 |
commit | a04e0d25258c11215221953abf46b3f137203138 (patch) | |
tree | 405ab78f90ede31ebfeb70c5d49e9ff5272abf36 | |
parent | f7929aaeb1f5d2b10468128f562a8b10d8258061 (diff) | |
download | spack-a04e0d25258c11215221953abf46b3f137203138.tar.gz spack-a04e0d25258c11215221953abf46b3f137203138.tar.bz2 spack-a04e0d25258c11215221953abf46b3f137203138.tar.xz spack-a04e0d25258c11215221953abf46b3f137203138.zip |
Add package: py-beancount (#21274)
* Add package: py-beancount
* Fixes
-rw-r--r-- | var/spack/repos/builtin/packages/py-beancount/package.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-beancount/package.py b/var/spack/repos/builtin/packages/py-beancount/package.py new file mode 100644 index 0000000000..92460452fa --- /dev/null +++ b/var/spack/repos/builtin/packages/py-beancount/package.py @@ -0,0 +1,31 @@ +# 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 PyBeancount(PythonPackage): + """A double-entry bookkeeping computer language that lets you define + financial transaction records in a text file, read them in memory, + generate a variety of reports from them, and provides a web + interface..""" + + homepage = "http://furius.ca/beancount/" + pypi = "beancount/beancount-2.3.3.tar.gz" + + version('2.3.3', sha256='d9a29839ea867d1dda7af1f4bf5d3959aa7c1574cd4a0bc86f69ee64c555c71c') + + depends_on('python@3.6:', type=('build', 'run')) + depends_on('py-setuptools', type=('build')) + + depends_on('py-bottle', type=('build', 'run')) + depends_on('py-lxml+htmlsoup', type=('build', 'run')) + depends_on('py-ply', type=('build', 'run')) + depends_on('py-python-dateutil', type=('build', 'run')) + depends_on('py-python-magic', type=('build', 'run')) + depends_on('py-beautifulsoup4', type=('build', 'run')) + depends_on('py-requests', type=('build', 'run')) + depends_on('py-chardet', type=('build', 'run')) + depends_on('py-google-api-python-client', type=('build', 'run')) |