[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
- [bug#42297] [PATCH 00/10] Add Python packages for Sourcehut, Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 03/10] gnu: Add python-minio., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 04/10] gnu: Add python-hglib., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 01/10] gnu: Add hg-evolve., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 02/10] gnu: Add python-pgpy., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 06/10] gnu: Add python-emailthreads., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 08/10] gnu: Add python-sshpubkeys., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 05/10] gnu: Add python-unidiff., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 07/10] gnu: Add python-zxcvbn., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 10/10] gnu: Add python-aiosmtpd., Alexandru-Sergiu Marton, 2020/07/09
- [bug#42297] [PATCH 09/10] gnu: Add python-atpublic.,
Alexandru-Sergiu Marton <=