guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 8bb31723b92c530c3edcbb9f83169957c9ce8bbf
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Jul 24 22:17:23 2026 +0100
gnu: Add python-catalogus.
* gnu/packages/python-xyz.scm (python-catalogus): New variable.
---
gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5386d64247..908195487f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -749,6 +749,31 @@ Bash-style brace expansion. It can generate strings from
patterns like
line drawing algorithm}.")
(license license:expat)))
+(define-public python-catalogus
+ (package
+ (name "python-catalogus")
+ (version "0.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/breezy-team/catalogus")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0l34anf0h4rcsimq78q6y1s2m91605pxwpzfzxr2vh2hl45sy4w5"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools
+ python-setuptools-scm))
+ (home-page "https://github.com/breezy-team/catalogus")
+ (synopsis "Classes to provide name-to-object registry-like support")
+ (description
+ "This package provides classes to provide name-to-object registry-like
+support.")
+ (license license:gpl2+)))
+
(define-public python-catppuccin
(package
(name "python-catppuccin")