~ruther/guix-local

161fa204c075950a680798dde8a963464a86c65f — Sharlatan Hellseher 5 months ago 04de190
gnu: python-conda-inject: Move to python-xyz.

* gnu/packages/package-management.scm (python-conda-inject): Move from
here ...
* gnu/packages/python-xyz.scm: ... to here.

Change-Id: Ie364dec68cca3f1e50e9b4951df45acd98f5624a
2 files changed, 28 insertions(+), 28 deletions(-)

M gnu/packages/package-management.scm
M gnu/packages/python-xyz.scm
M gnu/packages/package-management.scm => gnu/packages/package-management.scm +0 -28
@@ 1429,34 1429,6 @@ allows you to declare the libraries your project depends on and it will
manage (install/update) them for you.")
    (license license:expat)))

(define-public python-conda-inject
  (package
    (name "python-conda-inject")
    (version "1.3.2")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/koesterlab/conda-inject")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1aig9l676wc2sjb20y7rdqf0hfcfjhh92yfiy82mf7kfnv7rp3rk"))))
    (build-system pyproject-build-system)
    (arguments
     (list #:tests? #f)) ; tests require setting up Conda
    (native-inputs
     (list python-poetry-core))
    (propagated-inputs
     (list python-pyyaml))
    (home-page "https://github.com/koesterlab/conda-inject")
    (synopsis "Inject a conda environment into the current python environment")
    (description
     "This package provides helper functions for injecting a conda
environment into the current python environment (by modifying @code{sys.path},
without actually changing the current python environment).")
    (license license:expat)))

(define-public conda
  (package
    (name "conda")

M gnu/packages/python-xyz.scm => gnu/packages/python-xyz.scm +28 -0
@@ 660,6 660,34 @@ templates language.")
    (license (list license:zpl2.1
                   license:psfl))))

(define-public python-conda-inject
  (package
    (name "python-conda-inject")
    (version "1.3.2")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
             (url "https://github.com/koesterlab/conda-inject")
             (commit (string-append "v" version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1aig9l676wc2sjb20y7rdqf0hfcfjhh92yfiy82mf7kfnv7rp3rk"))))
    (build-system pyproject-build-system)
    (arguments
     (list #:tests? #f)) ; tests require setting up Conda
    (native-inputs
     (list python-poetry-core))
    (propagated-inputs
     (list python-pyyaml))
    (home-page "https://github.com/koesterlab/conda-inject")
    (synopsis "Inject a conda environment into the current python environment")
    (description
     "This package provides helper functions for injecting a conda
environment into the current python environment (by modifying @code{sys.path},
without actually changing the current python environment).")
    (license license:expat)))

(define-public python-copydetect
  (package
    (name "python-copydetect")