nixpkgs/pkgs/tools/security/zeekscript/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
850 B
Nix
Raw Normal View History

2023-04-09 16:14:55 +00:00
{ lib
, python3
, fetchPypi
}:
python3.pkgs.buildPythonApplication rec {
pname = "zeekscript";
version = "1.2.1";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-LogI9sJHvLN5WHJGdW47D09XZInKln/I2hNmG62d1JU=";
};
postPatch = ''
sed -i '/name = "zeekscript"/a version = "${version}"' pyproject.toml
'';
2023-04-09 16:14:55 +00:00
nativeBuildInputs = with python3.pkgs; [
setuptools
wheel
2023-04-09 16:14:55 +00:00
];
propagatedBuildInputs = with python3.pkgs; [
tree-sitter
];
pythonImportsCheck = [
"zeekscript"
];
meta = with lib; {
description = "A Zeek script formatter and analyzer";
homepage = "https://github.com/zeek/zeekscript";
changelog = "https://github.com/zeek/zeekscript/blob/v${version}/CHANGES";
license = licenses.bsd3;
maintainers = with maintainers; [ fab tobim ];
};
}