diff options
author | Hanketsu <hanketsu@egregore.fun> | 2025-02-28 10:26:19 +0100 |
---|---|---|
committer | Hanketsu <hanketsu@egregore.fun> | 2025-06-13 00:04:34 +0200 |
commit | dddc2f5f1c34c3d08e71fefc90bb228c36d192f3 (patch) | |
tree | 903ac6b04e684e44e8510c3ce29782436476150d /battering | |
parent | c9ef65004e8daaef0a0fd08ad612c84e6ad313c7 (diff) |
battering: Add python-barcode.
* battering/packages/python-xyz.scm (python-barcode): New variable.
Diffstat (limited to 'battering')
-rw-r--r-- | battering/packages/python-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/battering/packages/python-xyz.scm b/battering/packages/python-xyz.scm index 22d045b..619cab9 100644 --- a/battering/packages/python-xyz.scm +++ b/battering/packages/python-xyz.scm @@ -317,3 +317,25 @@ specific moment in time, whitelisting and revocation checks.") (description "Construct, mock & deploy PKI test configurations using declarative configuration.") (license license:expat))) + +(define-public python-barcode + (package + (name "python-barcode") + (version "0.15.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "python-barcode" version)) + (sha256 + (base32 "1pjlr1pp4yg679b9xd8pfyjqc7lvxas8chpzdm39gr8ivgxja61v")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-pillow)) + (native-inputs (list python-pytest + python-pytest-cov + python-setuptools + python-setuptools-scm + python-wheel)) + (home-page "https://github.com/WhyNotHugo/python-barcode") + (synopsis "Create standard barcodes with Python.") + (description "This package provides a simple way to create barcodes in Python.") + (license license:expat))) |