diff options
author | Milton Woods <miltonjwoods@gmail.com> | 2019-07-03 05:58:14 +1000 |
---|---|---|
committer | Elizabeth Fischer <elizabeth.fischer@columbia.edu> | 2019-07-02 15:58:14 -0400 |
commit | ea1df6a9b45a653e29707bc1de6146402405dffa (patch) | |
tree | 6f00febdd9a78fad5c4c4068639718b1037c0c1b /var | |
parent | 48bfece55e8940c6379d744be8a0d87e641b74bb (diff) | |
download | spack-ea1df6a9b45a653e29707bc1de6146402405dffa.tar.gz spack-ea1df6a9b45a653e29707bc1de6146402405dffa.tar.bz2 spack-ea1df6a9b45a653e29707bc1de6146402405dffa.tar.xz spack-ea1df6a9b45a653e29707bc1de6146402405dffa.zip |
py-pyke: new package (#11894)
* py-pyke: automatic python program generator
* py-pyke: expand the package docstring
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/py-pyke/package.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pyke/package.py b/var/spack/repos/builtin/packages/py-pyke/package.py new file mode 100644 index 0000000000..e003dbc981 --- /dev/null +++ b/var/spack/repos/builtin/packages/py-pyke/package.py @@ -0,0 +1,20 @@ +# 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 PyPyke(PythonPackage): + """Pyke introduces a form of Logic Programming (inspired by Prolog) + to the Python community by providing a knowledge-based inference + engine (expert system) written in 100% Python. + """ + + homepage = "http://sourceforge.net/projects/pyke" + url = "https://downloads.sourceforge.net/pyke/pyke3-1.1.1.zip" + + version('1.1.1', sha256='b877b390e70a2eacc01d97c3a992fde947276afc2798ca3ac6c6f74c796cb6dc') + + depends_on('python@3:') |