54 lines
1,015 B
Nix
54 lines
1,015 B
Nix
|
{ lib
|
||
|
, buildPythonPackage
|
||
|
, fetchFromGitHub
|
||
|
, poetry-core
|
||
|
, pysigma
|
||
|
, pytestCheckHook
|
||
|
, pythonOlder
|
||
|
, requests
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "pysigma-backend-elasticsearch";
|
||
|
version = "0.1.0";
|
||
|
format = "pyproject";
|
||
|
|
||
|
disabled = pythonOlder "3.8";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "SigmaHQ";
|
||
|
repo = "pySigma-backend-elasticsearch";
|
||
|
rev = "v${version}";
|
||
|
hash = "sha256-BEvYz0jTJifsNBrA4r16JkiFaERDj/zWKd9MbhcuCS8=";
|
||
|
};
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
poetry-core
|
||
|
];
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
pysigma
|
||
|
];
|
||
|
|
||
|
checkInputs = [
|
||
|
pytestCheckHook
|
||
|
requests
|
||
|
];
|
||
|
|
||
|
pythonImportsCheck = [
|
||
|
"sigma.backends.elasticsearch"
|
||
|
];
|
||
|
|
||
|
disabledTests = [
|
||
|
# Tests requires network access
|
||
|
"test_connect_lucene"
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Library to support Elasticsearch for pySigma";
|
||
|
homepage = "https://github.com/SigmaHQ/pySigma-backend-elasticsearch";
|
||
|
license = with licenses; [ lgpl21Only ];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|