about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyparsing/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyparsing/default.nix')
-rw-r--r--pkgs/development/python-modules/pyparsing/default.nix31
1 files changed, 16 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/pyparsing/default.nix b/pkgs/development/python-modules/pyparsing/default.nix
index 05d2586ff18d..171bf42ab203 100644
--- a/pkgs/development/python-modules/pyparsing/default.nix
+++ b/pkgs/development/python-modules/pyparsing/default.nix
@@ -1,28 +1,27 @@
-{ buildPythonPackage
-, fetchFromGitHub
-, lib
-, flit-core
-, jinja2
-, pytestCheckHook
-, railroad-diagrams
-, pyparsing
+{
+  buildPythonPackage,
+  fetchFromGitHub,
+  lib,
+  flit-core,
+  jinja2,
+  pytestCheckHook,
+  railroad-diagrams,
+  pyparsing,
 }:
 
 buildPythonPackage rec {
   pname = "pyparsing";
-  version = "3.1.2";
+  version = "3.1.4";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "pyparsing";
     repo = pname;
     rev = "refs/tags/${version}";
-    hash = "sha256-0B8DjO4kLgvt4sYsk8CZI+5icdKy73XE2tWeqVLqO5A=";
+    hash = "sha256-caHkwMFL1IFCQ+yZTp9o4yXfemoPx1xL4Nvb85oJzEI=";
   };
 
-  nativeBuildInputs = [
-    flit-core
-  ];
+  nativeBuildInputs = [ flit-core ];
 
   # circular dependencies with pytest if enabled by default
   doCheck = false;
@@ -35,7 +34,9 @@ buildPythonPackage rec {
   pythonImportsCheck = [ "pyparsing" ];
 
   passthru.tests = {
-    check = pyparsing.overridePythonAttrs (_: { doCheck = true; });
+    check = pyparsing.overridePythonAttrs (_: {
+      doCheck = true;
+    });
   };
 
   meta = with lib; {
@@ -46,7 +47,7 @@ buildPythonPackage rec {
       simple grammars, vs. the traditional lex/yacc approach, or the use of
       regular expressions. The pyparsing module provides a library of classes
       that client code uses to construct the grammar directly in Python code.
-   '';
+    '';
     license = licenses.mit;
     maintainers = with maintainers; [ kamadorueda ];
   };