Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python311Packages.pysigma-backend-elasticsearch: format with nixfmt

+12 -17
+12 -17
pkgs/development/python-modules/pysigma-backend-elasticsearch/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , poetry-core 5 - , pysigma 6 - , pytestCheckHook 7 - , pythonOlder 8 - , requests 9 }: 10 11 buildPythonPackage rec { ··· 27 --replace-fail " --cov=sigma --cov-report term --cov-report xml:cov.xml" "" 28 ''; 29 30 - build-system = [ 31 - poetry-core 32 - ]; 33 34 - dependencies = [ 35 - pysigma 36 - ]; 37 38 nativeCheckInputs = [ 39 pytestCheckHook 40 requests 41 ]; 42 43 - pythonImportsCheck = [ 44 - "sigma.backends.elasticsearch" 45 - ]; 46 47 disabledTests = [ 48 # Tests requires network access
··· 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + poetry-core, 6 + pysigma, 7 + pytestCheckHook, 8 + pythonOlder, 9 + requests, 10 }: 11 12 buildPythonPackage rec { ··· 28 --replace-fail " --cov=sigma --cov-report term --cov-report xml:cov.xml" "" 29 ''; 30 31 + build-system = [ poetry-core ]; 32 33 + dependencies = [ pysigma ]; 34 35 nativeCheckInputs = [ 36 pytestCheckHook 37 requests 38 ]; 39 40 + pythonImportsCheck = [ "sigma.backends.elasticsearch" ]; 41 42 disabledTests = [ 43 # Tests requires network access