summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/beancount-parser/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/beancount-parser/default.nix')
-rw-r--r--pkgs/development/python-modules/beancount-parser/default.nix31
1 files changed, 12 insertions, 19 deletions
diff --git a/pkgs/development/python-modules/beancount-parser/default.nix b/pkgs/development/python-modules/beancount-parser/default.nix
index f3319a58b06e..3493a7f61143 100644
--- a/pkgs/development/python-modules/beancount-parser/default.nix
+++ b/pkgs/development/python-modules/beancount-parser/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, fetchFromGitHub
-, buildPythonPackage
-, pythonOlder
-, lark
-, poetry-core
-, pytestCheckHook
+{
+ lib,
+ fetchFromGitHub,
+ buildPythonPackage,
+ pythonOlder,
+ lark,
+ poetry-core,
+ pytestCheckHook,
}:
buildPythonPackage rec {
@@ -21,21 +22,13 @@ buildPythonPackage rec {
hash = "sha256-8YcrsLdSRTixKXU/IM821kNcBo0jB/8DXA1/KiedsBY=";
};
- buildInputs = [
- poetry-core
- ];
+ buildInputs = [ poetry-core ];
- propagatedBuildInputs = [
- lark
- ];
+ propagatedBuildInputs = [ lark ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "beancount_parser"
- ];
+ pythonImportsCheck = [ "beancount_parser" ];
meta = with lib; {
description = "Standalone Lark based Beancount syntax parser";