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