about summary refs log tree commit diff
path: root/pkgs/development/python-modules/warlock/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/warlock/default.nix')
-rw-r--r--pkgs/development/python-modules/warlock/default.nix31
1 files changed, 13 insertions, 18 deletions
diff --git a/pkgs/development/python-modules/warlock/default.nix b/pkgs/development/python-modules/warlock/default.nix
index b0b16aed16a8c..cfe32849b5396 100644
--- a/pkgs/development/python-modules/warlock/default.nix
+++ b/pkgs/development/python-modules/warlock/default.nix
@@ -1,12 +1,13 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pythonOlder
-, poetry-core
-, jsonpatch
-, jsonschema
-, six
-, pytestCheckHook
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  pythonOlder,
+  poetry-core,
+  jsonpatch,
+  jsonschema,
+  six,
+  pytestCheckHook,
 }:
 
 buildPythonPackage rec {
@@ -27,27 +28,21 @@ buildPythonPackage rec {
     sed -i '/--cov/d' pytest.ini
   '';
 
-  nativeBuildInputs = [
-    poetry-core
-  ];
+  nativeBuildInputs = [ poetry-core ];
 
   propagatedBuildInputs = [
     jsonpatch
     jsonschema
   ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   disabledTests = [
     # https://github.com/bcwaldon/warlock/issues/64
     "test_recursive_models"
   ];
 
-  pythonImportsCheck = [
-    "warlock"
-  ];
+  pythonImportsCheck = [ "warlock" ];
 
   meta = with lib; {
     description = "Python object model built on JSON schema and JSON patch";