Files
nixpkgs/pkgs/development/python-modules/bhopengraph/default.nix
T
2026-02-08 10:18:29 +01:00

35 lines
795 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
}:
buildPythonPackage (finalAttrs: {
pname = "bhopengraph";
version = "1.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "p0dalirius";
repo = "bhopengraph";
tag = "v${finalAttrs.version}";
hash = "sha256-pT+xdcxFLQUrXpZxS0gmXjyhtR1jqDsBAPHgEhxX2R8=";
};
build-system = [ poetry-core ];
pythonImportsCheck = [ "bhopengraph" ];
# Module has no tests
doCheck = false;
meta = {
description = "Library to create BloodHound OpenGraphs";
homepage = "https://github.com/p0dalirius/bhopengraph";
changelog = "https://github.com/p0dalirius/bhopengraph/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
})