diff options
Diffstat (limited to 'battering/packages/python-xyz.scm')
-rw-r--r-- | battering/packages/python-xyz.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/battering/packages/python-xyz.scm b/battering/packages/python-xyz.scm index df406af..0a37494 100644 --- a/battering/packages/python-xyz.scm +++ b/battering/packages/python-xyz.scm @@ -162,3 +162,24 @@ looks like Material Design (close enough).") them (to a reasonable degree) to other formats using the ReportLab Open Source toolkit.") (license license:lgpl3+))) + +(define-public python-pae + (package + (name "python-pae") + (version "0.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/MatthiasValvekens/python-pae") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0wdgi99wxnyjabbzhqxs8abfzx83m52y3s39x28x5vyy9i7zci8g")))) + (build-system pyproject-build-system) + (native-inputs (list python-poetry-core + python-pytest)) + (home-page "https://github.com/MatthiasValvekens/python-pae") + (synopsis "Pre-authentication encoding (PAE) implementation in Python") + (description "Pre-authentication encoding (PAE) implementation in Python.") + (license license:expat))) |