diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2025-01-14 14:28:59 +0100 |
|---|---|---|
| committer | Ricardo Wurmus <rekado@elephly.net> | 2025-01-20 21:37:54 +0100 |
| commit | a355033473f8a234d2fd4e5d1d3957140d09f6a5 (patch) | |
| tree | 40b59c00477c8e020bee24b5f46d0b52b9c10727 /gnu/packages/python-xyz.scm | |
| parent | 025bd7d3115a164b329a30ce03bc205abd68a8e4 (diff) | |
gnu: Add python-iron-core.
* gnu/packages/python-xyz.scm (python-iron-core): New variable.
Change-Id: I0ba16f575e111b86f7c8aac5e8d2eb5331e082c6
Diffstat (limited to 'gnu/packages/python-xyz.scm')
| -rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index f4e259c2744..9a94a2a8cba 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -2874,6 +2874,26 @@ ICMP is typically used for diagnostic or control purposes - well known from utilities such as ping(1).") (license license:lgpl3))) +(define-public python-iron-core + (package + (name "python-iron-core") + (version "1.2.1") + (source + (origin + (method url-fetch) + (uri (pypi-uri "iron-core" version)) + (sha256 + (base32 "158vdymq6nbym0v1f9l5gz42j1gsq09b9yw9hgd70m5ymy30n6dp")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-dateutil python-requests)) + (native-inputs (list python-setuptools python-wheel)) + (home-page "https://www.github.com/iron-io/iron_core_python") + (synopsis "Universal classes and methods for Iron.io API wrappers") + (description + "This package provides universal classes and methods for the Iron.io API +wrappers to build on.") + (license license:bsd-2))) + (define-public python-rasterio (package (name "python-rasterio") |
