about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyradiomics/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyradiomics/default.nix')
-rw-r--r--pkgs/development/python-modules/pyradiomics/default.nix34
1 files changed, 18 insertions, 16 deletions
diff --git a/pkgs/development/python-modules/pyradiomics/default.nix b/pkgs/development/python-modules/pyradiomics/default.nix
index 2d77f8f1df0b..183f41044d31 100644
--- a/pkgs/development/python-modules/pyradiomics/default.nix
+++ b/pkgs/development/python-modules/pyradiomics/default.nix
@@ -1,15 +1,16 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, pythonOlder
-, pytestCheckHook
-, numpy
-, pykwalify
-, pywavelets
-, setuptools
-, simpleitk
-, six
-, versioneer
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  pythonOlder,
+  pytestCheckHook,
+  numpy,
+  pykwalify,
+  pywavelets,
+  setuptools,
+  simpleitk,
+  six,
+  versioneer,
 }:
 
 buildPythonPackage rec {
@@ -27,7 +28,10 @@ buildPythonPackage rec {
     name = "pyradiomics";
   };
 
-  nativeBuildInputs = [ setuptools versioneer ];
+  nativeBuildInputs = [
+    setuptools
+    versioneer
+  ];
 
   propagatedBuildInputs = [
     numpy
@@ -57,9 +61,7 @@ buildPythonPackage rec {
     "-k '${toString (lib.intersperse "and" (lib.forEach disabledTests (t: "not ${t}")))}'"
   ];
 
-  pythonImportsCheck = [
-    "radiomics"
-  ];
+  pythonImportsCheck = [ "radiomics" ];
 
   meta = with lib; {
     homepage = "https://pyradiomics.readthedocs.io";