mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
python3.pkgs.qiling: init at 1.2.3
This commit is contained in:
parent
19fe713b73
commit
e2065958f9
2 changed files with 47 additions and 0 deletions
45
pkgs/development/python-modules/qiling/default.nix
Normal file
45
pkgs/development/python-modules/qiling/default.nix
Normal file
|
@ -0,0 +1,45 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, capstone
|
||||
, unicorn
|
||||
, pefile
|
||||
, python-registry
|
||||
, keystone-engine
|
||||
, pyelftools
|
||||
, gevent
|
||||
}:
|
||||
buildPythonPackage rec {
|
||||
pname = "qiling";
|
||||
version = "1.2.3";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "e3ed09f9e080559e73e2a9199649b934b3594f653079d1e7da4992340c19eb64";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
capstone
|
||||
unicorn
|
||||
pefile
|
||||
python-registry
|
||||
keystone-engine
|
||||
pyelftools
|
||||
gevent
|
||||
];
|
||||
|
||||
# Tests are broken (attempt to import a file that tells you not to import it,
|
||||
# amongst other things)
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"qiling"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Qiling Advanced Binary Emulation Framework";
|
||||
homepage = "https://qiling.io/";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = teams.determinatesystems.members;
|
||||
};
|
||||
}
|
|
@ -7187,6 +7187,8 @@ in {
|
|||
|
||||
qds_sdk = callPackage ../development/python-modules/qds_sdk { };
|
||||
|
||||
qiling = callPackage ../development/python-modules/qiling { };
|
||||
|
||||
qimage2ndarray = callPackage ../development/python-modules/qimage2ndarray { };
|
||||
|
||||
qiskit-aer = callPackage ../development/python-modules/qiskit-aer { };
|
||||
|
|
Loading…
Reference in a new issue