python312Packages.niapy: format with nixftm

This commit is contained in:
Fabian Affolter 2024-05-18 14:06:43 +02:00
parent 981bc952f1
commit bde92aee46

View File

@ -1,13 +1,14 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, matplotlib
, numpy
, openpyxl
, pandas
, poetry-core
, pytestCheckHook
, pythonOlder
{
lib,
buildPythonPackage,
fetchFromGitHub,
matplotlib,
numpy,
openpyxl,
pandas,
poetry-core,
pytestCheckHook,
pythonOlder,
}:
buildPythonPackage rec {
@ -24,9 +25,7 @@ buildPythonPackage rec {
hash = "sha256-cT5CU1r3LZ9ValJwRUA0PaISmF6kXAz40alXbWYogGA=";
};
build-system = [
poetry-core
];
build-system = [ poetry-core ];
dependencies = [
matplotlib
@ -35,13 +34,9 @@ buildPythonPackage rec {
pandas
];
nativeCheckInputs = [
pytestCheckHook
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [
"niapy"
];
pythonImportsCheck = [ "niapy" ];
meta = with lib; {
description = "Micro framework for building nature-inspired algorithms";