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:
parent
1024571d35
commit
54f104bf25
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -3308,6 +3308,10 @@ in {
|
||||||
|
|
||||||
keyrings-alt = callPackage ../development/python-modules/keyrings-alt { };
|
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; };
|
keyutils = callPackage ../development/python-modules/keyutils { inherit (pkgs) keyutils; };
|
||||||
|
|
||||||
kicad = disabledIf isPy27 (toPythonModule (pkgs.kicad.override { python3 = python; }).src);
|
kicad = disabledIf isPy27 (toPythonModule (pkgs.kicad.override { python3 = python; }).src);
|
||||||
|
|
Loading…
Reference in New Issue