From 62d7f3b8c18af52afb8ddd904d369dc7d384f016 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Thu, 24 Jul 2025 23:03:03 +0200 Subject: [PATCH] gnu: python-mamba: Move to (gnu packages python-check). MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/python-xyz.scm (python-mamba): Move from here… * gnu/packages/python-check.scm (python-mamba): …to here. Change-Id: I29bb39825493e5fa29692bdd47a099d1854668f2 Signed-off-by: Sharlatan Hellseher --- gnu/packages/python-check.scm | 25 +++++++++++++++++++++++++ gnu/packages/python-xyz.scm | 25 ------------------------- 2 files changed, 25 insertions(+), 25 deletions(-) diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm index fe59b968d146688c9b7e9e289175d097bae63e26..c7a9d315b1bee6892081a3baa7e8b255283a9644 100644 --- a/gnu/packages/python-check.scm +++ b/gnu/packages/python-check.scm @@ -1136,6 +1136,31 @@ cProfile or profile modules, depending on what is available. It's a successor of @url{https://github.com/rkern/line_profiler}.") (license license:bsd-3))) +(define-public python-mamba + (package + (name "python-mamba") + (version "0.11.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/nestorsalceda/mamba") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0kyqd6q216srmylklm9ryjkrxrby3b4bs1v9a5wg4aanxmalh6j7")))) + (build-system pyproject-build-system) + (arguments + `(#:tests? #f)) ;No test + (propagated-inputs (list python-clint python-coverage)) + (native-inputs (list python-setuptools python-wheel)) + (home-page "https://nestorsalceda.com/mamba/") + (synopsis "Test runner for Python") + (description + "Mamba is a Behaviour-Driven Development tool for Python developers. + Is heavily influenced from RSpec, Mocha, Jasmine or Ginkgo.") + (license license:expat))) + (define-public python-memory-profiler (package (name "python-memory-profiler") diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 984bb0145e7d75fe688f1ae75bc6591f204eaa6c..2637276cf67f52d9747a3415422136bb96033761 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -26215,31 +26215,6 @@ package attempts to address the shortcomings of @code{isodate}.") @end itemize") (license license:expat))) -(define-public python-mamba - (package - (name "python-mamba") - (version "0.11.3") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/nestorsalceda/mamba") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "0kyqd6q216srmylklm9ryjkrxrby3b4bs1v9a5wg4aanxmalh6j7")))) - (build-system pyproject-build-system) - (arguments - `(#:tests? #f)) ;No test - (propagated-inputs (list python-clint python-coverage)) - (native-inputs (list python-setuptools python-wheel)) - (home-page "https://nestorsalceda.com/mamba/") - (synopsis "Test runner for Python") - (description - "Mamba is a Behaviour-Driven Development tool for Python developers. - Is heavily influenced from RSpec, Mocha, Jasmine or Ginkgo.") - (license license:expat))) - (define-public python-mando (package (name "python-mando")