python311Packages.ailment: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-09 23:13:27 +02:00
parent 7c4922897e
commit 8849930598
1 changed files with 10 additions and 15 deletions

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pyvex
, setuptools
{
lib,
buildPythonPackage,
fetchFromGitHub,
pythonOlder,
pyvex,
setuptools,
}:
buildPythonPackage rec {
@ -20,20 +21,14 @@ buildPythonPackage rec {
hash = "sha256-ue780bhPpxv7Bnx9PX+HdQt3gcDSvTvK0FLPMopXQRY=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
pyvex
];
dependencies = [ pyvex ];
# Tests depend on angr (possibly a circular dependency)
doCheck = false;
pythonImportsCheck = [
"ailment"
];
pythonImportsCheck = [ "ailment" ];
meta = with lib; {
description = "The angr Intermediate Language";