diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-03 21:56:00 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-04 12:05:53 +0000 |
| commit | 161fa204c075950a680798dde8a963464a86c65f (patch) | |
| tree | 5689ba7876cfb51c645a74f355650a9c5def18f8 /gnu | |
| parent | 04de1903f60be996f537de769b32a081b00c8a1b (diff) | |
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
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/package-management.scm | 28 | ||||
| -rw-r--r-- | gnu/packages/python-xyz.scm | 28 |
2 files changed, 28 insertions, 28 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 71076afd9a8..82c33c87494 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -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") diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 12e0b17f828..61eb8cfc57a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -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") |
