summaryrefslogtreecommitdiff
path: root/gnu/packages/package-management.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-11-03 21:51:29 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-04 12:05:53 +0000
commit04de1903f60be996f537de769b32a081b00c8a1b (patch)
tree60fe505994f9265dcb10f7f010e89095c92355f0 /gnu/packages/package-management.scm
parentff126c5b9c2b4609247cc4a28b1d5dac978cfae7 (diff)
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
Diffstat (limited to 'gnu/packages/package-management.scm')
-rw-r--r--gnu/packages/package-management.scm53
1 files changed, 0 insertions, 53 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm
index d20c56bcab0..71076afd9a8 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")