02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, funcy
|
|
, intervaltree
|
|
, pefile
|
|
, typing-extensions
|
|
, vivisect
|
|
, pytest-sugar
|
|
, pytestCheckHook
|
|
, python-flirt
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "viv-utils";
|
|
version = "0.7.9";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "williballenthin";
|
|
repo = "viv-utils";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-xM3jtA6fNk36+enL/EcQH59CNajYnGlEDu06QXIFz6A=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace "==" ">="
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
funcy
|
|
intervaltree
|
|
pefile
|
|
typing-extensions
|
|
vivisect
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
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";
|
|
changelog = "https://github.com/williballenthin/viv-utils/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
};
|
|
}
|