guix-commits
[Top][All Lists]
Advanced

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

01/06: gnu: Add python-owslib.


From: guix-commits
Subject: 01/06: gnu: Add python-owslib.
Date: Tue, 24 Mar 2020 06:46:09 -0400 (EDT)

glv pushed a commit to branch master
in repository guix.

commit efcb05083f869b1d429fbad2f7bb008799ae33be
Author: Guillaume Le Vaillant <address@hidden>
AuthorDate: Sat Mar 21 19:58:43 2020 +0100

    gnu: Add python-owslib.
    
    * gnu/packages/python-xyz.scm (python-owslib): New variable.
---
 gnu/packages/python-xyz.scm | 23 ++++++++++++++++++++++-
 1 file changed, 22 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 5336df0..4c71546 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -59,7 +59,7 @@
 ;;; Copyright © 2019, 2020 Brett Gilio <address@hidden>
 ;;; Copyright © 2019 Sam <address@hidden>
 ;;; Copyright © 2019 Jack Hill <address@hidden>
-;;; Copyright © 2019 Guillaume Le Vaillant <address@hidden>
+;;; Copyright © 2019, 2020 Guillaume Le Vaillant <address@hidden>
 ;;; Copyright © 2019 Alex Griffin <address@hidden>
 ;;; Copyright © 2019 Pierre Langlois <address@hidden>
 ;;; Copyright © 2019 Jacob MacDonald <address@hidden>
@@ -18460,3 +18460,24 @@ utility and generating summarized code coverage 
results.  It is inspired
 by the Python coverage.py package, which provides a similar utility for
 Python.")
     (license license:bsd-3)))
+
+(define-public python-owslib
+  (package
+    (name "python-owslib")
+    (version "0.19.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "OWSLib" version))
+       (sha256
+        (base32 "0v8vg0naa9rywvd31cpq65ljbdclpsrx09788v4xj7lg10np8nk0"))))
+    (build-system python-build-system)
+    (arguments
+     '(#:tests? #f)) ; TODO: package dependencies required for tests.
+    (synopsis "Interface for Open Geospatial Consortium web service")
+    (description
+     "OWSLib is a Python package for client programming with Open Geospatial
+Consortium (OGC) web service (hence OWS) interface standards, and their related
+content models.")
+    (home-page "https://geopython.github.io/OWSLib/";)
+    (license license:bsd-3)))



reply via email to

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