summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/bc-python-hcl2/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/bc-python-hcl2/default.nix')
-rw-r--r--pkgs/development/python-modules/bc-python-hcl2/default.nix23
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/bc-python-hcl2/default.nix b/pkgs/development/python-modules/bc-python-hcl2/default.nix
index dc74d1612760..519a39c53bac 100644
--- a/pkgs/development/python-modules/bc-python-hcl2/default.nix
+++ b/pkgs/development/python-modules/bc-python-hcl2/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, lark
-, pynose
-, pythonOlder
-, setuptools
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ lark,
+ pynose,
+ pythonOlder,
+ setuptools,
}:
buildPythonPackage rec {
@@ -25,16 +26,12 @@ buildPythonPackage rec {
setuptools
];
- dependencies = [
- lark
- ];
+ dependencies = [ lark ];
# This fork of python-hcl2 doesn't ship tests
doCheck = false;
- pythonImportsCheck = [
- "hcl2"
- ];
+ pythonImportsCheck = [ "hcl2" ];
meta = with lib; {
description = "Parser for HCL2 written in Python using Lark";