guix-patches
[Top][All Lists]
Advanced

[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






reply via email to

[Prev in Thread] Current Thread [Next in Thread]