emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#42390: closed ([PATCH] gnu: Add python-mamba.)


From: GNU bug Tracking System
Subject: bug#42390: closed ([PATCH] gnu: Add python-mamba.)
Date: Tue, 21 Jul 2020 16:43:01 +0000

Your message dated Tue, 21 Jul 2020 18:41:58 +0200
with message-id <87blk8n7l5.fsf@gnu.org>
and subject line Re: [bug#42390] [PATCH] gnu: Add python-mamba.
has caused the debbugs.gnu.org bug report #42390,
regarding [PATCH] gnu: Add python-mamba.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
42390: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=42390
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: Add python-mamba. Date: Thu, 16 Jul 2020 14:25:30 +0200
* gnu/packages/python-xyz.scm (python-mamba): New variable.
---
 gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 15d9e097c5..b5485caa3a 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -14394,6 +14394,28 @@ in other versions.")
 (define-public python2-configparser
   (package-with-python2 python-configparser))
 
+(define-public python-mamba
+  (package
+    (name "python-mamba")
+    (version "0.11.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "mamba" version))
+              (sha256
+               (base32
+                "0bpbgz9v63rpanjjpc8bnvrr8fkms5rzylh77xrcki1x6az7gnsz"))))
+    (build-system python-build-system)
+    (arguments `(#:tests? #f))  ; No test
+    (propagated-inputs
+     `(("python-clint" ,python-clint)
+       ("python-coverage" ,python-coverage)))
+    (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")
-- 
2.27.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#42390] [PATCH] gnu: Add python-mamba. Date: Tue, 21 Jul 2020 18:41:58 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.3 (gnu/linux)
Hi,

Tanguy Le Carrour <tanguy@bioneland.org> skribis:

> * gnu/packages/python-xyz.scm (python-mamba): New variable.

Applied, thanks!

There’s a lint warning though I don’t know if it’s applicable:

--8<---------------cut here---------------start------------->8---
gnu/packages/python-xyz.scm:14542:2: python-mamba@0.11.0: 'python-coverage' 
should probably be a native input
--8<---------------cut here---------------end--------------->8---

If ‘python-coverage’ is only used at build time, then it should
definitely be a native input.

WDYT?

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]