summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/mmtf-python/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/mmtf-python/default.nix')
-rw-r--r--pkgs/development/python-modules/mmtf-python/default.nix21
1 files changed, 9 insertions, 12 deletions
diff --git a/pkgs/development/python-modules/mmtf-python/default.nix b/pkgs/development/python-modules/mmtf-python/default.nix
index 197d0cf3e65b..0cf01c7bc6fb 100644
--- a/pkgs/development/python-modules/mmtf-python/default.nix
+++ b/pkgs/development/python-modules/mmtf-python/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, msgpack
-, numpy
-, unittestCheckHook
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ msgpack,
+ numpy,
+ unittestCheckHook,
}:
buildPythonPackage rec {
@@ -21,18 +22,14 @@ buildPythonPackage rec {
numpy
];
- nativeCheckInputs = [
- unittestCheckHook
- ];
+ nativeCheckInputs = [ unittestCheckHook ];
unittestFlagsArray = [
"-s mmtf/tests"
"-p \"*_tests.py\""
];
- pythonImportsCheck = [
- "mmtf"
- ];
+ pythonImportsCheck = [ "mmtf" ];
meta = {
description = "The python implementation of the MMTF API, decoder and encoder";