@@ 5176,6 5176,33 @@ untrusted sources, pickling is avoided in this package.")
capabilities and attributes, similar to the prctl syscall.")
(license license:gpl3+)))
+(define-public python-pyhimitsu
+ (package
+ (name "python-pyhimitsu")
+ (version "0.0.9")
+ (source (origin
+ (method url-fetch)
+ (uri (pypi-uri "py_himitsu" version))
+ (sha256
+ (base32
+ "1kljxhjvfy945zij8fif3s6xzgcyslxz99mv460iy0anzj433pj5"))))
+ (build-system pyproject-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (replace 'check
+ (lambda _
+ ;; (setenv "PYTHONPATH" (getenv "GUIX_PYTHONPATH"))
+ (invoke "make" "check"))))))
+ (native-inputs (list python-hatchling))
+ (propagated-inputs (list python-pyxdg))
+ (home-page "https://git.sr.ht/~apreiml/py-himitsu")
+ (synopsis "Himitsu client protocol implementation in Python")
+ (description "This package provides a library for writing Himitsu client
+programs in Python.")
+ (license license:expat)))
+
(define-public python-hjson
;; Using commit from master branch as the PyPI version does not contain
;; the hjson/tests/ directory.