guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#42297] [PATCH 09/10] gnu: Add python-atpublic.


From: Alexandru-Sergiu Marton
Subject: [bug#42297] [PATCH 09/10] gnu: Add python-atpublic.
Date: Thu, 9 Jul 2020 22:19:17 +0300

* gnu/packages/python-xyz.scm (python-atpublic): New variable.
---
 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 4caf29169b..d8270edca1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -20644,3 +20644,26 @@ features are:
 Currently ssh-rsa, ssh-dss (DSA), ssh-ed25519 and ecdsa keys with NIST
 curves are supported.")
     (license license:bsd-3)))
+
+(define-public python-atpublic
+  (package
+    (name "python-atpublic")
+    (version "1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "atpublic" version))
+       (sha256
+        (base32
+         "0i3sbxkdlbb4560rrlmwwd5y4ps7k73lp4d8wnmd7ag9k426gjkx"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:tests? #f)) ;; FIXME
+    (home-page "https://gitlab.com/warsaw/public";)
+    (synopsis
+     "Decorator for populating __all__")
+    (description
+     "This is a very simple decorator and function which populates a
+module's __all__ and optionally the module globals.  This provides
+both a pure-Python implementation and an optional C implementation.")
+    (license license:asl2.0)))
-- 
2.27.0






reply via email to

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