mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-31 12:44:44 +00:00
58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
python3Packages,
|
|
versionCheckHook,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication (finalAttrs: {
|
|
pname = "openhack";
|
|
version = "0.2.3";
|
|
pyproject = true;
|
|
|
|
__structuredAttrs = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openhackai";
|
|
repo = "openhack";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-ptM4jL+Wjmz9n4HPa87s5kLHU1OhSyD2AEz0m/i6E3o=";
|
|
};
|
|
|
|
build-system = with python3Packages; [ hatchling ];
|
|
|
|
dependencies = with python3Packages; [
|
|
aiohttp
|
|
httpx
|
|
openai
|
|
playwright
|
|
prompt-toolkit
|
|
pydantic
|
|
pydantic-settings
|
|
pygments
|
|
rich
|
|
tree-sitter
|
|
tree-sitter-javascript
|
|
tree-sitter-python
|
|
tree-sitter-typescript
|
|
];
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
|
|
doInstallCheck = true;
|
|
|
|
pythonImportsCheck = [ "openhack" ];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Open Source Agentic Security Scanner";
|
|
homepage = "https://github.com/openhackai/openhack";
|
|
changelog = "https://github.com/openhackai/openhack/releases/tag/${finalAttrs.src.tag}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
mainProgram = "openhack";
|
|
};
|
|
})
|