summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorDaniel Khodabakhsh <d@niel.khodabakh.sh>2026-01-21 18:24:02 -0800
committerAndreas Enge <andreas@enge.fr>2026-02-08 11:11:21 +0100
commit446bbceac1ff1efa4984f81fb68d45a76f9f370d (patch)
tree957d0c7f60ac345ee8c6cba874d6b5ec11223db5 /gnu/packages/python-xyz.scm
parent0508e91355cd8fd91b941d3c489f0942c06ab7bd (diff)
gnu: Add python-ezdxf.
* gnu/packages/python-xyz.scm (python-ezdxf): New variable. Change-Id: I38986a59449a105fefddc9e31ab29b91110ddced Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0750a9a5f92..d8abeffbcea 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -178,6 +178,7 @@
;;; Copyright © 2025 Luca Kredel <luca.kredel@web.de>
;;; Copyright © 2025 Isidor Zeuner <guix@quidecco.pl>
;;; Copyright © 2025 Andy Tai <atai@atai.org>
+;;; Copyright © 2026 Daniel Khodabakhsh <d@niel.khodabakh.sh>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1074,6 +1075,29 @@ dicts.")
Rust's @url{https://docs.rs/exitcode, exitcode}.")
(license license:expat)))
+(define-public python-ezdxf
+ (package
+ (name "python-ezdxf")
+ (version "1.3.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mozman/ezdxf")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32 "14rb99dakzzpdflnsw2wr2y0s28fhqz4dp78mi823457bdpv18ix"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-cython python-pillow python-pytest
+ python-setuptools unzip))
+ (propagated-inputs (list python-fonttools python-numpy python-pyparsing
+ python-typing-extensions))
+ (home-page "https://ezdxf.mozman.at/")
+ (synopsis "Python library to read and write DXF drawings")
+ (description "ezdxf is a Python package to create new DXF files and
+read/modify/write existing DXF files.")
+ (license license:expat)))
+
(define-public python-fastnumbers
(package
(name "python-fastnumbers")