python312Packages.gekko: format with nixfmt

This commit is contained in:
Fabian Affolter 2024-04-12 10:37:18 +02:00
parent a726656b84
commit 84a50dcf52
1 changed files with 9 additions and 12 deletions

View File

@ -1,9 +1,10 @@
{ lib
, buildPythonPackage
, fetchPypi
, numpy
, pythonOlder
, setuptools
{
lib,
buildPythonPackage,
fetchPypi,
numpy,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
@ -18,13 +19,9 @@ buildPythonPackage rec {
hash = "sha256-xc6NfPCvkEYjUG82QmFqDuu02QNwKfoS6DDpkdaMWJ8=";
};
build-system = [
setuptools
];
build-system = [ setuptools ];
dependencies = [
numpy
];
dependencies = [ numpy ];
# Module has no tests
doCHeck = false;