blob: 2aefe091090275f5b84fd0105aa7bf9406f482d8 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pyvex,
setuptools,
typing-extensions,
nix-update-script,
}:
buildPythonPackage rec {
pname = "ailment";
version = "9.2.148";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "angr";
repo = "ailment";
tag = "v${version}";
hash = "sha256-mUxpogD1fKKKocT7q9cdHNufkU/oUO+J1ULl9Hp9Lp4=";
};
build-system = [ setuptools ];
dependencies = [
pyvex
typing-extensions
];
# Tests depend on angr (possibly a circular dependency)
doCheck = false;
pythonImportsCheck = [ "ailment" ];
passthru.updateScript = nix-update-script { };
meta = with lib; {
description = "Angr Intermediate Language";
homepage = "https://github.com/angr/ailment";
license = with licenses; [ bsd2 ];
maintainers = with maintainers; [ fab ];
};
}
|