summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorDanny Milosavljevic <dannym@friendly-machines.com>2025-01-25 14:33:24 +0100
committerDanny Milosavljevic <dannym@friendly-machines.com>2025-01-25 17:24:11 +0100
commit6b9e1cd26f6d143f138f01d46a46139f1e7909e0 (patch)
tree7462bfa47a17781aba6eb7567ae8fdbcae16e183 /gnu/packages/python-xyz.scm
parentad4a5e5a50ece12ec00fdda8f8a6e360e21a1e35 (diff)
gnu: Add python-nfcpy.
* gnu/packages/python-xyz.scm (python-nfcpy): New variable. Change-Id: I4b7a3fec8999d23c8d734d3b683c52ba023f8644
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 14c62db47a8..912d8db1845 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -38925,6 +38925,28 @@ client library.")
38925Data Exchange Format decoder and encoder.") 38925Data Exchange Format decoder and encoder.")
38926 (license license:isc))) 38926 (license license:isc)))
38927 38927
38928(define-public python-nfcpy
38929 (package
38930 (name "python-nfcpy")
38931 (version "1.0.4")
38932 (source
38933 (origin
38934 (method url-fetch)
38935 (uri (pypi-uri "nfcpy" version))
38936 (sha256
38937 (base32 "0sxgp298i8y17i9drp8sclxx0i3vn0wgh5ajs2arw7cy2780igg5"))))
38938 (build-system pyproject-build-system)
38939 (arguments
38940 `(#:tests? #f)) ; Tests use nfc.ndef even though that has been removed.
38941 (propagated-inputs (list python-libusb1 python-ndeflib python-pydes
38942 python-pyserial))
38943 (native-inputs (list python-setuptools python-wheel))
38944 (home-page "https://github.com/nfcpy/nfcpy")
38945 (synopsis "Python module for Near-Field Communication.")
38946 (description "This package provides a Python module for Near-Field
38947Communication.")
38948 (license license:eupl1.1)))
38949
38928(define-public python-clrprint 38950(define-public python-clrprint
38929 (package 38951 (package
38930 (name "python-clrprint") 38952 (name "python-clrprint")