summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/jsonschema-specifications/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/jsonschema-specifications/default.nix')
-rw-r--r--pkgs/development/python-modules/jsonschema-specifications/default.nix31
1 files changed, 13 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/jsonschema-specifications/default.nix b/pkgs/development/python-modules/jsonschema-specifications/default.nix
index 6d4a6478374b..989f5c5cb1e2 100644
--- a/pkgs/development/python-modules/jsonschema-specifications/default.nix
+++ b/pkgs/development/python-modules/jsonschema-specifications/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, hatch-vcs
-, hatchling
-, importlib-resources
-, pytestCheckHook
-, pythonOlder
-, referencing
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ hatch-vcs,
+ hatchling,
+ importlib-resources,
+ pytestCheckHook,
+ pythonOlder,
+ referencing,
}:
buildPythonPackage rec {
@@ -29,17 +30,11 @@ buildPythonPackage rec {
propagatedBuildInputs = [
referencing
- ] ++ lib.optionals (pythonOlder "3.9") [
- importlib-resources
- ];
+ ] ++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [
- "jsonschema_specifications"
- ];
+ pythonImportsCheck = [ "jsonschema_specifications" ];
meta = with lib; {
description = "Support files exposing JSON from the JSON Schema specifications";