python312Packages.dissect-cstruct: 4.1 -> 4.2, python312Packages.dissect-cobaltstrike: 1.0.0 -> 1.2.0 (#347948)

This commit is contained in:
Fabian Affolter 2024-10-12 08:36:38 +02:00 committed by GitHub
commit 25c0da5910
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5,6 +5,8 @@
dissect-util,
fetchFromGitHub,
flow-record,
hatch-vcs,
hatchling,
httpx,
lark,
pycryptodome,
@ -13,13 +15,11 @@
pytestCheckHook,
pythonOlder,
rich,
setuptools,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "dissect-cobaltstrike";
version = "1.0.0";
version = "1.2.0";
pyproject = true;
disabled = pythonOlder "3.7";
@ -28,12 +28,12 @@ buildPythonPackage rec {
owner = "fox-it";
repo = "dissect.cobaltstrike";
rev = "refs/tags/v${version}";
hash = "sha256-CS50c3r7sdxp3CRS6XJ4QUmUFtmhFg6rSdKfYzJSOV4=";
hash = "sha256-GMpMTsI4mepaOGhw7/cSymkcxzn4mlNS1ZKYGYut+LM=";
};
build-system = [
setuptools
setuptools-scm
hatch-vcs
hatchling
];
dependencies = [
@ -78,8 +78,5 @@ buildPythonPackage rec {
changelog = "https://github.com/fox-it/dissect.cobaltstrike/releases/tag/${version}";
license = licenses.agpl3Only;
maintainers = with maintainers; [ fab ];
# Compatibility with dissect.struct 4.x
# https://github.com/fox-it/dissect.cobaltstrike/issues/53
broken = versionAtLeast dissect-cstruct.version "4";
};
}