summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyformlang/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyformlang/default.nix')
-rw-r--r--pkgs/development/python-modules/pyformlang/default.nix29
1 files changed, 13 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/pyformlang/default.nix b/pkgs/development/python-modules/pyformlang/default.nix
index 1f25eac53a9f..8747d55313eb 100644
--- a/pkgs/development/python-modules/pyformlang/default.nix
+++ b/pkgs/development/python-modules/pyformlang/default.nix
@@ -1,13 +1,14 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, networkx
-, numpy
-, pydot
-, pytestCheckHook
-, pythonOlder
-, setuptools
-, wheel
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ networkx,
+ numpy,
+ pydot,
+ pytestCheckHook,
+ pythonOlder,
+ setuptools,
+ wheel,
}:
buildPythonPackage rec {
@@ -33,13 +34,9 @@ buildPythonPackage rec {
pydot
];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "pyformlang"
- ];
+ pythonImportsCheck = [ "pyformlang" ];
meta = with lib; {
description = "Framework for formal grammars";