Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python312Packages.niapy: format with nixftm

+14 -19
+14 -19
pkgs/development/python-modules/niapy/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchFromGitHub 4 - , matplotlib 5 - , numpy 6 - , openpyxl 7 - , pandas 8 - , poetry-core 9 - , pytestCheckHook 10 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + fetchFromGitHub, 5 + matplotlib, 6 + numpy, 7 + openpyxl, 8 + pandas, 9 + poetry-core, 10 + pytestCheckHook, 11 + pythonOlder, 11 12 }: 12 13 13 14 buildPythonPackage rec { ··· 24 25 hash = "sha256-cT5CU1r3LZ9ValJwRUA0PaISmF6kXAz40alXbWYogGA="; 25 26 }; 26 27 27 - build-system = [ 28 - poetry-core 29 - ]; 28 + build-system = [ poetry-core ]; 30 29 31 30 dependencies = [ 32 31 matplotlib ··· 35 34 pandas 36 35 ]; 37 36 38 - nativeCheckInputs = [ 39 - pytestCheckHook 40 - ]; 37 + nativeCheckInputs = [ pytestCheckHook ]; 41 38 42 - pythonImportsCheck = [ 43 - "niapy" 44 - ]; 39 + pythonImportsCheck = [ "niapy" ]; 45 40 46 41 meta = with lib; { 47 42 description = "Micro framework for building nature-inspired algorithms";