guix_mirror_bot pushed a commit to branch astro-update
in repository guix.
commit e3ad7c0e849dbee3e478fcaf336c17907efa12cc
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Sep 17 12:14:42 2026 +0100
gnu: Add python-hatch-cython.
* gnu/packages/python-xyz.scm (python-hatch-cython): New variable.
---
gnu/packages/python-xyz.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index a80553588f0..9a293002489 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1994,6 +1994,37 @@ It also supports IPython/Jupyter.")
by Pavel Raiskup.")
(license license:gpl3+)))
+(define-public python-hatch-cython
+ (package
+ (name "python-hatch-cython")
+ (version "0.6.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/joshua-auchincloss/hatch-cython")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0fczzvmg7i62p3wr2jayyl11p5q5cmwnyw79f0a6jv5d9xhaygpn"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:test-flags #~(list "tests")))
+ (native-inputs
+ (list python-hatchling
+ python-numpy
+ python-pytest
+ python-toml))
+ (propagated-inputs
+ (list python-cython
+ python-hatchling
+ python-setuptools))
+ (home-page "https://github.com/joshua-auchincloss/hatch-cython")
+ (synopsis "Cython build hooks for Hatch")
+ (description "This package provides a Cython build hooks for Hatch.")
+ (license license:expat)))
+
(define-public python-hatch-gettext
(package
(name "python-hatch-gettext")