02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
56 lines
994 B
Nix
56 lines
994 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, funcy
|
|
, intervaltree
|
|
, pefile
|
|
, typing-extensions
|
|
, vivisect
|
|
, pytest-sugar
|
|
, pytestCheckHook
|
|
, python-flirt
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "viv-utils";
|
|
version = "0.7.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "williballenthin";
|
|
repo = "viv-utils";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-JDu+1n1wP2Vsp2V/bKdE+RFp6bE8RNmimi4wdsatwME=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "==" ">="
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
funcy
|
|
intervaltree
|
|
pefile
|
|
typing-extensions
|
|
vivisect
|
|
];
|
|
|
|
checkInputs = [
|
|
pytest-sugar
|
|
pytestCheckHook
|
|
];
|
|
|
|
passthru = {
|
|
optional-dependencies = {
|
|
flirt = [
|
|
python-flirt
|
|
];
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Utilities for working with vivisect";
|
|
homepage = "https://github.com/williballenthin/viv-utils";
|
|
license = licenses.asl20;
|
|
maintainers = teams.determinatesystems.members;
|
|
};
|
|
}
|