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 | bda2f82bff25c3f2ee86dc3fc14fcbea17819b64 (patch) | |
| tree | a2abdf7ae35f93f229a2be517f9778132c9d9953 | |
| parent | 6b59d0a05004844a6ca418b4ca8af6163030ee7e (diff) | |
gnu: python-conda-package-handling: Update to 2.4.0.
* gnu/packages/package-management.scm (python-conda-package-handling): Update to 2.4.0.
[arguments]: Drop all.
[native-inputs]: Remove python-cython and python-wheel; add python-bottle.
[inputs]: Remove libarchive.
[propagated-inputs]: Remove python-six and python-tqdm; add
python-conda-package-streaming.
Change-Id: Id9314814bbe665ff483fea8c65b8f62a16ad303a
| -rw-r--r-- | gnu/packages/package-management.scm | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 97e737573c4..b405fe85130 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1531,37 +1531,26 @@ without actually changing the current python environment).") (define-public python-conda-package-handling (package (name "python-conda-package-handling") - (version "1.7.3") + (version "2.4.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/conda/conda-package-handling/") - (commit version))) + (url "https://github.com/conda/conda-package-handling/") + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 - "1dq6f5ks3cinb355x712bls9bvv6bli6x3c43sdkqvawdw8xgv9j")))) + (base32 "1l2zbbwlxp9azpshixvxnb9354xajxkn88934grpwl70blgb3yq2")))) (build-system pyproject-build-system) - (arguments - `(#:phases - (modify-phases %standard-phases - (add-after 'unpack 'use-unmodified-libarchive - (lambda _ - (substitute* "setup.py" - (("archive_and_deps") "archive"))))))) - (propagated-inputs - (list python-six python-tqdm)) - (inputs - (list libarchive)) (native-inputs - (list python-cython + (list python-bottle python-mock python-pytest python-pytest-cov python-pytest-mock - python-setuptools - python-wheel)) + python-setuptools)) + (propagated-inputs + (list python-conda-package-streaming)) (home-page "https://conda.io") (synopsis "Create and extract conda packages of various formats") (description |
