[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#60838] [PATCH v3 7/9] gnu: Add python-cogapp.
From: |
Felix Gruber |
Subject: |
[bug#60838] [PATCH v3 7/9] gnu: Add python-cogapp. |
Date: |
Sun, 26 Mar 2023 19:43:33 +0000 |
* gnu/packages/python-xyz.scm (python-cogapp): New variable.
---
gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 9240fad2e6..391a75e341 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -31583,6 +31583,28 @@ (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 python-build-system)
+ (arguments
+ '(#:tests? #f))
+ (home-page "http://nedbatchelder.com/code/cog")
+ (synopsis
+ "Content generator for executing Python snippets in source files")
+ (description
+ "Cog is a file generation tool. It lets you use pieces of Python
+code as generators in your source files to generate whatever text you
+need.")
+ (license license:expat)))
+
(define-public python-bsdiff4
(package
(name "python-bsdiff4")
--
2.39.2
- [bug#60838] [PATCH 0/8] Add datasette and python-sqlite-utils., Maxim Cournoyer, 2023/03/21
- [bug#60838] [PATCH v3 0/9] Add datasette and python-sqlite-utils., Felix Gruber, 2023/03/26
- [bug#60838] [PATCH v3 1/9] gnu: Add python-click-default-group-wheel., Felix Gruber, 2023/03/26
- [bug#60838] [PATCH v3 2/9] gnu: Add python-sqlite-fts4., Felix Gruber, 2023/03/26
- [bug#60838] [PATCH v3 3/9] gnu: Add python-sqlite-utils., Felix Gruber, 2023/03/26
- [bug#60838] [PATCH v3 4/9] gnu: Add python-asgi-lifespan., Felix Gruber, 2023/03/26
- [bug#60838] [PATCH v3 5/9] gnu: Add python-asgi-csrf., Felix Gruber, 2023/03/26
- [bug#60838] [PATCH v3 6/9] gnu: Add python-trustme-next., Felix Gruber, 2023/03/26
- [bug#60838] [PATCH v3 7/9] gnu: Add python-cogapp.,
Felix Gruber <=
- [bug#60838] [PATCH v3 8/9] gnu: python-pytest-7.1: Depend on python-pluggy-next., Felix Gruber, 2023/03/26
- [bug#60838] [PATCH v3 9/9] gnu: Add datasette., Felix Gruber, 2023/03/26