From b8fbe1fe612dad6ad00d8c024a6b9dca12080e65 Mon Sep 17 00:00:00 2001 From: Muriithi Frederick Muriuki Date: Mon, 10 Jul 2017 10:25:37 +0300 Subject: [PATCH] gnu: Add python-conda * gnu/package/python.scm (python-conda, python2-conda): New variables. --- gnu/packages/python.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index d110a1cb3..f0e87fb53 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -15549,3 +15549,41 @@ pure Python module.") (define-public python2-rencode (package-with-python2 python-rencode)) + +(define-public python-conda + (package + (name "python-conda") + (version "4.3.16") + (source + (origin + (method url-fetch) + (uri (pypi-uri "conda" version)) + (sha256 + (base32 + "0lsr52a6x268ixfif36p6r64zkhsdjri0g8gcylkpsix6hhzh7m9")))) + (build-system python-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (replace 'check + (lambda* _xs + (zero? (system* "py.test"))))))) + (native-inputs + `(("python-ruamel.yaml" ,python-ruamel.yaml) + ("python-requests" ,python-requests) + ("python-pycosat" ,python-pycosat) + ("python-pytest" ,python-pytest) + ("python-responses" ,python-responses))) + (home-page "https://github.com/conda/conda") + (synopsis + "Cross-platform, OS-agnostic, system-level binary package manager") + (description + "Conda is a cross-platform, Python-agnostic binary package manager. It is +the package manager used by Anaconda installations, but it may be used for other +systems as well. Conda makes environments first-class citizens, making it easy +to create independent environments even for C libraries. Conda is written +entirely in Python, and is BSD licensed open source.") + (license license:bsd-3))) + +(define-public python2-conda + (package-with-python2 python-conda)) -- 2.13.2