diff options
| author | Morgan Smith <Morgan.J.Smith@outlook.com> | 2025-07-11 14:25:21 -0400 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-12 11:58:08 +0200 |
| commit | fe7dc536732386aea01ed0d0caf8452ad634e06e (patch) | |
| tree | 05c2715e1d810c10bfb6d643b39032dca42bc8f3 /gnu/packages/python-xyz.scm | |
| parent | 55da82b63154eacf9b95767597789554e1bf804b (diff) | |
gnu: Add python-ioctl-opt.
* gnu/packages/python-xyz.scm (python-ioctl-opt): New variable.
Change-Id: I5eef30444528fa722a12268a58c956993dcd47d1
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 4a3f0aa9ea..c1bce966a3 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -32071,6 +32071,24 @@ bindings for Python 3.") standard error channel (stderr) in your program.") (license license:expat)))) +(define-public python-ioctl-opt + (package + (name "python-ioctl-opt") + (version "1.3") + (source + (origin + (method url-fetch) + (uri (pypi-uri "ioctl-opt" version)) + (sha256 + (base32 "1ygjgkzn0i61zk2yr27aqnma08c8xpblhdixli9f20if1nlgkm2y")))) + (build-system pyproject-build-system) + (native-inputs (list python-setuptools python-wheel)) + (home-page "http://github.com/vpelletier/python-ioctl-opt") + (synopsis "Functions to compute fnctl.ioctl's opt argument") + (description + "This package provides functions to compute fnctl.ioctl's opt argument.") + (license license:gpl2+))) + (define-public python-anyio (package (name "python-anyio") |
