From f688758fc9a9eef21a9f2d677ef9076a0b5837cf Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 3 Nov 2025 21:45:57 +0000 Subject: [PATCH] gnu: python-conda-package-handling: Move to python-web. * gnu/packages/package-management.scm (python-conda-package-handling): Move from here ... * gnu/packages/python-web.scm: ... to here. Change-Id: I6fa929a850161e9a8f649ac25abc50db94e91322 --- gnu/packages/package-management.scm | 30 ----------------------------- gnu/packages/python-web.scm | 30 +++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 30 deletions(-) diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index b405fe85130c479683779b49e51bd51c7cf5cfe1..f68afb811a62edfb37928ef07215a451b45e1d25 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1528,36 +1528,6 @@ environment into the current python environment (by modifying @code{sys.path}, without actually changing the current python environment).") (license license:expat))) -(define-public python-conda-package-handling - (package - (name "python-conda-package-handling") - (version "2.4.0") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/conda/conda-package-handling/") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1l2zbbwlxp9azpshixvxnb9354xajxkn88934grpwl70blgb3yq2")))) - (build-system pyproject-build-system) - (native-inputs - (list python-bottle - python-mock - python-pytest - python-pytest-cov - python-pytest-mock - python-setuptools)) - (propagated-inputs - (list python-conda-package-streaming)) - (home-page "https://conda.io") - (synopsis "Create and extract conda packages of various formats") - (description - "This library is an abstraction of Conda package handling and a tool for -extracting, creating, and converting between formats.") - (license license:bsd-3))) - (define-public conda (package (name "conda") diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 34f48b3dfb53708c2fb03c7ea1ff2a1ba99a41d2..1b1e175d13f3acb66e4caf9c2c8df2afa29e6715 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -371,6 +371,36 @@ and JSON. services.") (license license:expat))) +(define-public python-conda-package-handling + (package + (name "python-conda-package-handling") + (version "2.4.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/conda/conda-package-handling/") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1l2zbbwlxp9azpshixvxnb9354xajxkn88934grpwl70blgb3yq2")))) + (build-system pyproject-build-system) + (native-inputs + (list python-bottle + python-mock + python-pytest + python-pytest-cov + python-pytest-mock + python-setuptools)) + (propagated-inputs + (list python-conda-package-streaming)) + (home-page "https://conda.io") + (synopsis "Create and extract conda packages of various formats") + (description + "This library is an abstraction of Conda package handling and a tool for +extracting, creating, and converting between formats.") + (license license:bsd-3))) + (define-public python-conda-package-streaming (package (name "python-conda-package-streaming")