1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Remove yml2.

* gnu/packages/pep.scm (yml2): Delete variable.

Change-Id: I5640745544ea4a05638cff4f0256208e341b8424
This commit is contained in:
Andreas Enge
2025-08-30 11:55:22 +02:00
parent a26bde109b
commit aadadc25eb

View File

@@ -41,33 +41,3 @@
#:use-module (gnu packages tls)
#:use-module (gnu packages xml))
(define-public yml2
(package
(name "yml2")
(version "2.7.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://gitea.pep.foundation/fdik/yml2")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "0fm1x1fv4lwcpbn59s55idzf7x173n59xpz8rlrxalmi6gvsjijr"))))
(build-system pyproject-build-system)
(arguments
(list
;; XXX: There is no testing framework, only a samples directory.
#:tests? #f))
(native-inputs (list python-setuptools python-wheel))
(propagated-inputs (list python-lxml))
(home-page "https://fdik.org/yml/")
(synopsis "Use a Domain Specific Language for XML without defining
a grammar")
(description
"The YML compiler is a small Python script. It provides the command line
front end yml2c. As default, it compiles your script and outputs to stdout,
that usually is the terminal. Your shell provides options to redirect the
output into a pipe or a file.")
(license license:gpl2)))