~ruther/guix-local

bda2f82bff25c3f2ee86dc3fc14fcbea17819b64 — Sharlatan Hellseher 6 months ago 6b59d0a
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
1 files changed, 8 insertions(+), 19 deletions(-)

M gnu/packages/package-management.scm
M gnu/packages/package-management.scm => gnu/packages/package-management.scm +8 -19
@@ 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