From 161fa204c075950a680798dde8a963464a86c65f Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 3 Nov 2025 21:56:00 +0000 Subject: [PATCH] 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 --- gnu/packages/package-management.scm | 28 ---------------------------- 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 71076afd9a8ff8ca87990ff2e703e0e46f59d4b7..82c33c87494087b6aeed7673e93f0dac0171096a 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 12e0b17f8281684746203a96ad612f8a51c9f2d4..61eb8cfc57a07c596b6cb089a362375e3af7c810 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")