python3.pkgs.keystone: init at 0.9.2

This is used in a couple of reverse engineering tools i.e. [gef](https://github.com/hugsy/gef).
This commit is contained in:
Jörg Thalheim 2020-12-17 16:57:52 +01:00
parent 1024571d35
commit 54f104bf25
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ lib
, buildPythonPackage
, keystone
}:
buildPythonPackage rec {
inherit (keystone) pname src version buildInputs nativeBuildInputs;
dontUseCmakeConfigure = 1;
preBuild = "cd bindings/python";
meta = with lib; {
inherit (keystone.meta) description license homepage;
maintainers = [ maintainers.mic92 ];
};
}

View File

@ -3308,6 +3308,10 @@ in {
keyrings-alt = callPackage ../development/python-modules/keyrings-alt { };
keystone = callPackage ../development/python-modules/keystone {
inherit (pkgs) keystone;
};
keyutils = callPackage ../development/python-modules/keyutils { inherit (pkgs) keyutils; };
kicad = disabledIf isPy27 (toPythonModule (pkgs.kicad.override { python3 = python; }).src);