guix-patches
[Top][All Lists]
Advanced

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

[bug#57094] [PATCH 4/9] gnu: Add python-flake8-assertive.


From: Nicolas Graves
Subject: [bug#57094] [PATCH 4/9] gnu: Add python-flake8-assertive.
Date: Wed, 10 Aug 2022 00:43:28 +0200

* gnu/packages/python-xyz.scm (python-flake8-assertive): New variable.
---
 gnu/packages/python-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 90b3c6686f..c6415c06d0 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -10713,6 +10713,31 @@ (define-public python-flake8-3.8
      (list python-pycodestyle-2.6 python-entrypoints python-pyflakes-2.2
            python-mccabe))))
 
+(define-public python-flake8-assertive
+  (package
+   (name "python-flake8-assertive")
+   (version "2.1.0")
+   (source
+    (origin
+      (method git-fetch)
+      (uri (git-reference
+            (url "https://github.com/jparise/flake8-assertive";)
+            (commit version)))
+      (file-name (git-file-name name version))
+      (sha256
+       (base32 "139cda03jgwasz6gqx41gnyvk28iz8w68liqcbn46h2zjg20c6ck"))))
+   (build-system python-build-system)
+   (propagated-inputs (list python-flake8))
+   (home-page "https://github.com/jparise/flake8-assertive";)
+   (synopsis "Assert method checker for flake8 unit-testing.")
+   (description "\
+This package provides @code{flake8-assertive}, a Flake8 extension that
+encourages using richer, more specific unittest assertions beyond just the
+typical @code{assertEqual(a, b)} and @code{assertTrue(x)} methods.  The
+suggested methods perform more precise checks and provide better failure
+messages than the generic methods.")
+   (license license:expat)))
+
 (define-public python-flake8-blind-except
   (package
     (name "python-flake8-blind-except")
-- 
2.37.1






reply via email to

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