summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/py-partiql-parser/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/py-partiql-parser/default.nix')
-rw-r--r--pkgs/development/python-modules/py-partiql-parser/default.nix23
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/py-partiql-parser/default.nix b/pkgs/development/python-modules/py-partiql-parser/default.nix
index 95cfa9e9c9b7..7dd7e6c739de 100644
--- a/pkgs/development/python-modules/py-partiql-parser/default.nix
+++ b/pkgs/development/python-modules/py-partiql-parser/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pytestCheckHook
-, pythonOlder
-, hatchling
-, sure
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ pytestCheckHook,
+ pythonOlder,
+ hatchling,
+ sure,
}:
buildPythonPackage rec {
@@ -21,18 +22,14 @@ buildPythonPackage rec {
hash = "sha256-BSqc3xibStb3J6Rua4dDp/eRD5/ns/dU1vGa4vL1Cyo=";
};
- build-system = [
- hatchling
- ];
+ build-system = [ hatchling ];
nativeCheckInputs = [
pytestCheckHook
sure
];
- pythonImportsCheck = [
- "py_partiql_parser"
- ];
+ pythonImportsCheck = [ "py_partiql_parser" ];
meta = with lib; {
description = "A tokenizer/parser/executor for the PartiQL-language";