From 04de1903f60be996f537de769b32a081b00c8a1b Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 3 Nov 2025 21:51:29 +0000 Subject: [PATCH] gnu: python-anaconda-client: Move to python-web. * gnu/packages/package-management.scm (python-anaconda-client): Move from here ... * gnu/packages/python-web.scm: ... to here. Change-Id: Ie93aaa10d74b1be60e57250d4a20295b49473222 --- gnu/packages/package-management.scm | 53 ---------------------------- gnu/packages/python-web.scm | 54 +++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 53 deletions(-) diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index d20c56bcab..71076afd9a 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1429,59 +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-anaconda-client - (package - (name "python-anaconda-client") - (version "1.13.1") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/Anaconda-Platform/anaconda-client") - (commit version))) - (file-name (git-file-name name version)) - (sha256 - (base32 "06nn3cwhrrajsbn9pils2539lzplfnyhn9java3xrpm3ksxq9g72")))) - (build-system pyproject-build-system) - (arguments - (list - #:test-flags - #~(list "--deselect=tests/utils/test_conda.py::test_find_conda" - "--deselect=tests/utils/test_conda.py::test_conda_vars") - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'fix-pytest-config - (lambda _ - (substitute* "setup.cfg" - (("addopts=.*") "addopts=\n"))))))) - (native-inputs - (list python-freezegun - python-pytest - python-setuptools)) - (propagated-inputs - (list python-anaconda-cli-base - python-conda-package-handling - python-conda-package-streaming - python-dateutil - python-defusedxml - python-nbformat - python-pillow - python-platformdirs - python-pytz - python-pyyaml - python-requests - python-requests-toolbelt - python-setuptools - python-tqdm - python-urllib3)) - (home-page "https://github.com/Anaconda-Platform/anaconda-client") - (synopsis "Anaconda Cloud command line client library") - (description - "Anaconda Cloud command line client library provides an interface to -Anaconda Cloud. Anaconda Cloud is useful for sharing packages, notebooks and -environments.") - (license license:bsd-3))) - (define-public python-conda-inject (package (name "python-conda-inject") diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm index 1b1e175d13..9c5dc09632 100644 --- a/gnu/packages/python-web.scm +++ b/gnu/packages/python-web.scm @@ -2,6 +2,7 @@ ;;; Copyright © 2015 Eric Dvorsak ;;; Copyright © 2015-2025 Efraim Flashner ;;; Copyright © 2017 Christopher Baines +;;; Copyright © 2017 Muriithi Frederick Muriuki ;;; Copyright © 2016, 2017 Danny Milosavljevic ;;; Copyright © 2013, 2014, 2015, 2016, 2020, 2023 Andreas Enge ;;; Copyright © 2016-2023 Marius Bakke @@ -215,6 +216,59 @@ writing applications that talk to network enabled embedded @acronym{IoT,Internet of Things} devices.") (license license:expat))) +(define-public python-anaconda-client + (package + (name "python-anaconda-client") + (version "1.13.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Anaconda-Platform/anaconda-client") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06nn3cwhrrajsbn9pils2539lzplfnyhn9java3xrpm3ksxq9g72")))) + (build-system pyproject-build-system) + (arguments + (list + #:test-flags + #~(list "--deselect=tests/utils/test_conda.py::test_find_conda" + "--deselect=tests/utils/test_conda.py::test_conda_vars") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'fix-pytest-config + (lambda _ + (substitute* "setup.cfg" + (("addopts=.*") "addopts=\n"))))))) + (native-inputs + (list python-freezegun + python-pytest + python-setuptools)) + (propagated-inputs + (list python-anaconda-cli-base + python-conda-package-handling + python-conda-package-streaming + python-dateutil + python-defusedxml + python-nbformat + python-pillow + python-platformdirs + python-pytz + python-pyyaml + python-requests + python-requests-toolbelt + python-setuptools + python-tqdm + python-urllib3)) + (home-page "https://github.com/Anaconda-Platform/anaconda-client") + (synopsis "Anaconda Cloud command line client library") + (description + "Anaconda Cloud command line client library provides an interface to +Anaconda Cloud. Anaconda Cloud is useful for sharing packages, notebooks and +environments.") + (license license:bsd-3))) + (define-public python-apprise (package (name "python-apprise")