guix_mirror_bot pushed a commit to branch master
in repository guix.
commit ac17da422c9712ffa106304813b18439334a79fe
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Oct 23 19:25:47 2025 +0100
gnu: Add python-phply.
* gnu/packages/python-xyz.scm (python-phply): New variable.
Change-Id: I1df0b7fa90658467a8f69690c1c70d6884b5d865
---
gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index f282f4f552..2c1859eaef 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -1445,6 +1445,29 @@ implement path classes for non-local filesystems")
Standalone}.")
(license license:expat)))
+(define-public python-phply
+ (package
+ (name "python-phply")
+ (version "1.2.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "phply" version))
+ (sha256
+ (base32 "05s9v2q6b2r0i65zfw4jf1nzb619zgw0anl08ls7ll2z516pf9qb"))))
+ (build-system pyproject-build-system)
+ (native-inputs
+ (list python-pytest
+ python-setuptools))
+ (propagated-inputs
+ (list python-ply))
+ (home-page "https://github.com/viraptor/phply")
+ (synopsis "PHP parser written in Python using PLY")
+ (description
+ "@code{phply} is a parser for the PHP programming language written using
+PLY,a Lex/YACC-style parser generator toolkit for Python.")
+ (license license:bsd-3)))
+
(define-public python-puccinialin
(package
(name "python-puccinialin")