guix-commits
[Top][All Lists]
Advanced

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

04/07: gnu: Add python-flake8-polyfill.


From: Marius Bakke
Subject: 04/07: gnu: Add python-flake8-polyfill.
Date: Thu, 9 Feb 2017 17:47:47 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 1f42d824c1fb3790da93ef2596776e23dc57c0c9
Author: Muriithi Frederick Muriuki <address@hidden>
Date:   Thu Feb 9 20:48:33 2017 +0300

    gnu: Add python-flake8-polyfill.
    
    * gnu/packages/python.scm (python-flake8-polyfill, python2-flake8-polyfill):
    New variables.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/python.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index a8bf99b..da6deb5 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -5993,6 +5993,28 @@ complexity of Python source code.")
 (define-public python2-flake8-2.2.4
   (package-with-python2 python-flake8-2.2.4))
 
+(define-public python-flake8-polyfill
+  (package
+    (name "python-flake8-polyfill")
+    (version "1.0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "flake8-polyfill" version))
+       (sha256
+        (base32
+         "02gn2wxvh9vnf7m7dld7ca4l60mg5c370hv3swwppkngwaqmcw67"))))
+    (build-system python-build-system)
+    (home-page "https://gitlab.com/pycqa/flake8-polyfill";)
+    (synopsis "Polyfill package for Flake8 plugins")
+    (description
+     "This package that provides some compatibility helpers for Flake8
+plugins that intend to support Flake8 2.x and 3.x simultaneously.")
+    (license license:expat)))
+
+(define-public python2-flake8-polyfill
+  (package-with-python2 python-flake8-polyfill))
+
 (define-public python-mistune
   (package
     (name "python-mistune")



reply via email to

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