nixpkgs/pkgs/development/python-modules/ailment/default.nix
2024-03-28 23:08:17 +01:00

45 lines
794 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pyvex
, setuptools
}:
buildPythonPackage rec {
pname = "ailment";
version = "9.2.96";
pyproject = true;
disabled = pythonOlder "3.11";
src = fetchFromGitHub {
owner = "angr";
repo = "ailment";
rev = "refs/tags/v${version}";
hash = "sha256-xc9/J360ftynKT5HYNcjR/0WX04DUDmszaAHb8h3Iao=";
};
build-system = [
setuptools
];
dependencies = [
pyvex
];
# Tests depend on angr (possibly a circular dependency)
doCheck = false;
pythonImportsCheck = [
"ailment"
];
meta = with lib; {
description = "The angr Intermediate Language";
homepage = "https://github.com/angr/ailment";
license = with licenses; [ bsd2 ];
maintainers = with maintainers; [ fab ];
};
}