guix-commits
[Top][All Lists]
Advanced

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

07/09: gnu: Add python-legacy-api-wrap.


From: guix-commits
Subject: 07/09: gnu: Add python-legacy-api-wrap.
Date: Fri, 6 Mar 2020 03:16:59 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 053ab825be04abd4dd04d421a169f7d541d7bd31
Author: Ricardo Wurmus <address@hidden>
AuthorDate: Fri Mar 6 08:55:50 2020 +0100

    gnu: Add python-legacy-api-wrap.
    
    * gnu/packages/python-xyz.scm (python-legacy-api-wrap): New variable.
---
 gnu/packages/python-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 58df879..b4f20dc 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -7365,6 +7365,30 @@ your package is installed, via @code{pkg_resources} 
(part of
 @code{setuptools}).")
     (license license:gpl3+)))
 
+(define-public python-legacy-api-wrap
+  (package
+    (name "python-legacy-api-wrap")
+    (version "1.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "legacy-api-wrap" version))
+       (sha256
+        (base32
+         "06qhp0g543dy98vpa41hwdalvdbsjfc3ldk474yr9sd75mhl8jh3"))))
+    (build-system python-build-system)
+    (propagated-inputs
+     `(("python-get-version" ,python-get-version)
+       ("python-pytest" ,python-pytest)
+       ("python-pytest-black" ,python-pytest-black)
+       ("python-pytest-cov" ,python-pytest-cov)
+       ("python-setuptools" ,python-setuptools)))
+    (home-page "https://github.com/flying-sheep/legacy-api-wrap";)
+    (synopsis "Legacy API wrapper")
+    (description "This module defines a decorator to wrap legacy APIs.  The
+primary use case is APIs defined before keyword-only parameters existed.")
+    (license license:gpl3+)))
+
 (define-public python-pyasn1
   (package
     (name "python-pyasn1")



reply via email to

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