python311Packages.ailment: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-09 23:13:27 +02:00
parent 7c4922897e
commit 8849930598

View File

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