python311Packages.pysigma-backend-elasticsearch: format with nixfmt
This commit is contained in:
parent
ef9c39adbb
commit
df708ff63f
1 changed files with 12 additions and 17 deletions
|
@ -1,11 +1,12 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, poetry-core
|
||||
, pysigma
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, requests
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
poetry-core,
|
||||
pysigma,
|
||||
pytestCheckHook,
|
||||
pythonOlder,
|
||||
requests,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -27,22 +28,16 @@ buildPythonPackage rec {
|
|||
--replace-fail " --cov=sigma --cov-report term --cov-report xml:cov.xml" ""
|
||||
'';
|
||||
|
||||
build-system = [
|
||||
poetry-core
|
||||
];
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
dependencies = [
|
||||
pysigma
|
||||
];
|
||||
dependencies = [ pysigma ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
requests
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"sigma.backends.elasticsearch"
|
||||
];
|
||||
pythonImportsCheck = [ "sigma.backends.elasticsearch" ];
|
||||
|
||||
disabledTests = [
|
||||
# Tests requires network access
|
||||
|
|
Loading…
Reference in a new issue