aboutsummaryrefslogtreecommitdiff
path: root/gn/packages
diff options
context:
space:
mode:
authorBonfaceKilz2021-03-08 20:23:02 +0300
committerBonfaceKilz2021-03-08 20:23:02 +0300
commit566df97115752e114258da8bf8c504d8f4f140d2 (patch)
treea0f1a8e10623c09d033c550ec9d2bbb94bac56b8 /gn/packages
parent7a1bbad30f7196aecc2639c97099384177649ad8 (diff)
downloadguix-bioinformatics-566df97115752e114258da8bf8c504d8f4f140d2.tar.gz
gn: python: Add python-ipfshttpclient
Diffstat (limited to 'gn/packages')
-rw-r--r--gn/packages/python.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gn/packages/python.scm b/gn/packages/python.scm
index 769a7ec..998b0aa 100644
--- a/gn/packages/python.scm
+++ b/gn/packages/python.scm
@@ -1607,3 +1607,28 @@ sorted order.")
(description
"Python implementation of jbenet's multiaddr")
(license license:expat)))
+
+(define-public python-ipfshttpclient
+ (package
+ (name "python-ipfshttpclient")
+ (version "0.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "ipfshttpclient" version))
+ (sha256
+ (base32
+ "160hcczkrnbqwqjx86vri5kvmvn17v01csll1c8w8ifx96r14azv"))))
+ (build-system python-build-system)
+ (native-inputs
+ `(("python-pytest" ,python-pytest)
+ ("python-pytest-runner" ,python-pytest-runner)))
+ (propagated-inputs
+ `(("python-httpx" ,python-httpx)
+ ("python-multiaddr" ,python-multiaddr)
+ ("python-requests" ,python-requests)))
+ (home-page
+ "https://ipfs.io/ipns/12D3KooWEqnTdgqHnkkwarSrJjeMP2ZJiADWLYADaNvUb6SQNyPF/")
+ (synopsis "Python IPFS HTTP CLIENT library")
+ (description "Python IPFS HTTP CLIENT library")
+ (license license:expat)))