gnu: Add python-cogapp.

* gnu/packages/python-xyz.scm (python-cogapp): New variable.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
Felix Gruber 2023-03-26 19:43:33 +00:00 committed by Maxim Cournoyer
parent 4bff240e9b
commit d495b50444
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -31637,6 +31637,24 @@ (define-public python-geomet
versa. Extended WKB/WKT are also supported.")
(license license:asl2.0)))
(define-public python-cogapp
(package
(name "python-cogapp")
(version "3.3.0")
(source (origin
(method url-fetch)
(uri (pypi-uri "cogapp" version))
(sha256
(base32
"1c0xx3p3lzrlyqhmccyq9c50f8v9pqk2992gb4nl50h2yy1m3s8v"))))
(build-system pyproject-build-system)
(native-inputs (list python-pytest))
(home-page "https://nedbatchelder.com/code/cog")
(synopsis "Content generation tool that leverages Python")
(description "Cog is a file generation tool. It allows using pieces of
Python code as generators in your source files to generate arbitrary text.")
(license license:expat)))
(define-public python-bsdiff4
(package
(name "python-bsdiff4")