mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
31 lines
778 B
Nix
31 lines
778 B
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, keystone }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "keystone-engine";
|
|
version = "0.9.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1xahdr6bh3dw5swrc2r8kqa8ljhqlb7k2kxv5mrw5rhcmcnzcyig";
|
|
};
|
|
|
|
setupPyBuildFlags = lib.optionals stdenv.isLinux [ "--plat-name" "linux" ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace setup.py --replace \
|
|
"libkeystone" "${keystone}/lib/libkeystone"
|
|
'';
|
|
|
|
# No tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "keystone" ];
|
|
|
|
meta = with lib; {
|
|
description = "Lightweight multi-platform, multi-architecture assembler framework";
|
|
homepage = "https://www.keystone-engine.org";
|
|
maintainers = with maintainers; [ dump_stack ];
|
|
license = licenses.gpl2Only;
|
|
};
|
|
}
|