           SPELL=python-boolean.py
         VERSION=3.8
          SOURCE="boolean.py-$VERSION.tar.gz"
        WEB_SITE="https://github.com/bastikr/boolean.py"
   SOURCE_URL[0]="$WEB_SITE/archive/refs/tags/v$VERSION.tar.gz"
     SOURCE_HASH=sha512:d41ce9a05743342c116d68b88ea36be316ac9fc190a8451aca97b52fde60c58ec49d36d2dee071f83fb5f6ad49337da80bf9de1bf3d479b46386fd87e4cf2f14
SOURCE_DIRECTORY="$BUILD_DIRECTORY/${SOURCE%.tar.gz}"
      LICENSE[0]="BSD-2-Clause"
         ENTERED=20210712
        KEYWORDS=""
           SHORT="Implements boolean algebra in one module"
cat << EOF
"boolean.py" is a small library implementing a boolean algebra. It defines
two base elements, TRUE and FALSE, and a Symbol class that can take on one of
these two values. Calculations are done in terms of AND, OR and NOT - other
compositions like XOR and NAND are not implemented but can be emulated with
AND or and NOT. Expressions are constructed from parsed strings or in Python.
EOF
