Files
nixpkgs/pkgs/development/python-modules/flow-record/default.nix
T
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

76 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, elasticsearch
, fetchFromGitHub
, lz4
, msgpack
, pytestCheckHook
, pythonOlder
, setuptools
, setuptools-scm
, wheel
, zstandard
}:
buildPythonPackage rec {
pname = "flow-record";
version = "3.7";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "fox-it";
repo = "flow.record";
rev = version;
hash = "sha256-bXI7q+unlrXvagKisAO4INfzeXlC4g918xmPmwMDCK8=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [
msgpack
];
passthru.optional-dependencies = {
compression = [
lz4
zstandard
];
elastic = [
elasticsearch
];
};
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"flow.record"
];
disabledTestPaths = [
# Test requires rdump
"tests/test_rdump.py"
];
disabledTests = [
"test_rdump_fieldtype_path_json"
];
meta = with lib; {
description = "Library for defining and creating structured data";
homepage = "https://github.com/fox-it/flow.record";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
};
}