about summary refs log tree commit diff
path: root/pkgs/development/python-modules/crysp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/crysp/default.nix')
-rw-r--r--pkgs/development/python-modules/crysp/default.nix23
1 files changed, 10 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/crysp/default.nix b/pkgs/development/python-modules/crysp/default.nix
index dd8d43eac84bb..d3a555a6d801c 100644
--- a/pkgs/development/python-modules/crysp/default.nix
+++ b/pkgs/development/python-modules/crysp/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchFromGitHub
-, grandalf
-, matplotlib
-, pytestCheckHook
-, pythonOlder
+{
+  lib,
+  buildPythonPackage,
+  fetchFromGitHub,
+  grandalf,
+  matplotlib,
+  pytestCheckHook,
+  pythonOlder,
 }:
 
 buildPythonPackage rec {
@@ -26,18 +27,14 @@ buildPythonPackage rec {
     matplotlib
   ];
 
-  nativeCheckInputs = [
-    pytestCheckHook
-  ];
+  nativeCheckInputs = [ pytestCheckHook ];
 
   postPatch = ''
     substituteInPlace setup.py \
       --replace "'pytest-runner'," ""
   '';
 
-  pythonImportsCheck = [
-    "crysp"
-  ];
+  pythonImportsCheck = [ "crysp" ];
 
   meta = with lib; {
     description = "Module that provides crypto-related facilities";