python3Packages.viv-utils: add flirt feature

This commit is contained in:
Simon Bruder 2022-07-25 13:25:16 +02:00
parent 647d05a321
commit 2a12c578f4
No known key found for this signature in database
GPG key ID: 8D3C82F9F309F8EC

View file

@ -8,6 +8,7 @@
, vivisect
, pytest-sugar
, pytestCheckHook
, python-flirt
}:
buildPythonPackage rec {
pname = "viv-utils";
@ -38,6 +39,14 @@ buildPythonPackage rec {
pytestCheckHook
];
passthru = {
optional-dependencies = {
flirt = [
python-flirt
];
};
};
meta = with lib; {
description = "Utilities for working with vivisect";
homepage = "https://github.com/williballenthin/viv-utils";