python311Packages.claripy: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-09 23:15:47 +02:00
parent d3606244da
commit d7361d9da9
1 changed files with 15 additions and 20 deletions

View File

@ -1,14 +1,15 @@
{ lib
, buildPythonPackage
, cachetools
, decorator
, fetchFromGitHub
, pysmt
, pytestCheckHook
, pythonOlder
, pythonRelaxDepsHook
, setuptools
, z3-solver
{
lib,
buildPythonPackage,
cachetools,
decorator,
fetchFromGitHub,
pysmt,
pytestCheckHook,
pythonOlder,
pythonRelaxDepsHook,
setuptools,
z3-solver,
}:
buildPythonPackage rec {
@ -26,9 +27,7 @@ buildPythonPackage rec {
};
# z3 does not provide a dist-info, so python-runtime-deps-check will fail
pythonRemoveDeps = [
"z3-solver"
];
pythonRemoveDeps = [ "z3-solver" ];
build-system = [
pythonRelaxDepsHook
@ -42,13 +41,9 @@ buildPythonPackage rec {
z3-solver
] ++ z3-solver.requiredPythonModules;
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"claripy"
];
pythonImportsCheck = [ "claripy" ];
meta = with lib; {
description = "Python abstraction layer for constraint solvers";