diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-03 21:21:11 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-04 10:50:02 +0000 |
| commit | 6b59d0a05004844a6ca418b4ca8af6163030ee7e (patch) | |
| tree | e7161e5505f6268cbd748b6987eb7e6f5a09e7a2 /gnu | |
| parent | 2ca7922d1890f1848c59f4c835d7bbf73a8bc748 (diff) | |
gnu: Add python-conda-package-streaming.
* gnu/packages/python-web.scm (python-conda-package-streaming): New variable.
Change-Id: Ief80df1b815d59dc7e2ee46db656e8f2ea165b73
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/python-web.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 8fcf2115375..34f48b3dfb5 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -371,6 +371,32 @@ and JSON. services.") (license license:expat))) +(define-public python-conda-package-streaming + (package + (name "python-conda-package-streaming") + (version "0.12.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "conda_package_streaming" version)) + (sha256 + (base32 "1fcyx83swx1wfndrl0vdk8c2pixshn54gkjy7xchkra13kw2yas2")))) + (build-system pyproject-build-system) + (arguments + ;; TODO: Cycles with python-conda-package-handling, implement bootstrap. + (list #:tests? #f)) + (native-inputs + (list python-flit-core)) + (propagated-inputs + (list python-requests + python-zstandard)) + (home-page "https://conda.github.io/conda-package-streaming/") + (synopsis "Conda formats (@code{.conda}, @code{.tar.bz2}) reader library") + (description + "This package provides an efficient library to read from new and old format +@code{.conda} and @code{.tar.bz2} conda packages.") + (license license:bsd-3))) + (define-public python-devpi-common (package (name "python-devpi-common") |
