summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/opytimark/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/opytimark/default.nix')
-rw-r--r--pkgs/development/python-modules/opytimark/default.nix27
1 files changed, 11 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/opytimark/default.nix b/pkgs/development/python-modules/opytimark/default.nix
index 69eb61f795bf..29b5fcee2c51 100644
--- a/pkgs/development/python-modules/opytimark/default.nix
+++ b/pkgs/development/python-modules/opytimark/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, fetchpatch
-, numpy
-, pytestCheckHook
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchFromGitHub,
+ fetchpatch,
+ numpy,
+ pytestCheckHook,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -28,13 +29,9 @@ buildPythonPackage rec {
})
];
- propagatedBuildInputs = [
- numpy
- ];
+ propagatedBuildInputs = [ numpy ];
- nativeCheckInputs = [
- pytestCheckHook
- ];
+ nativeCheckInputs = [ pytestCheckHook ];
# several tests are failing
disabledTests = [
@@ -44,9 +41,7 @@ buildPythonPackage rec {
"cec_benchmark"
];
- pythonImportsCheck = [
- "opytimark"
- ];
+ pythonImportsCheck = [ "opytimark" ];
meta = with lib; {
description = "Library consisting of optimization benchmarking functions";