aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHanketsu <hanketsu@egregore.fun>2025-02-27 21:29:48 +0100
committerHanketsu <hanketsu@egregore.fun>2025-06-13 00:04:32 +0200
commit571010c58a1102d7cbd82e7ef1ffab9e64764552 (patch)
tree5c0e261edcc83d6ab1b741bd79f6e78df585597a
parent1c349ba6d5a9f9cbb3f93e9dfc51c37103553980 (diff)
battering: Add python-pae.
* battering/packages/python-xyz.scm (python-pae): New variable.
-rw-r--r--battering/packages/python-xyz.scm21
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)))