about summary refs log tree commit diff
path: root/pkgs/development/python-modules/textnets/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/textnets/default.nix')
-rw-r--r--pkgs/development/python-modules/textnets/default.nix50
1 files changed, 25 insertions, 25 deletions
diff --git a/pkgs/development/python-modules/textnets/default.nix b/pkgs/development/python-modules/textnets/default.nix
index 399bc5288022..09b47a1b1207 100644
--- a/pkgs/development/python-modules/textnets/default.nix
+++ b/pkgs/development/python-modules/textnets/default.nix
@@ -1,23 +1,23 @@
-{ lib
-, buildPythonPackage
-, cairocffi
-, cython
-, fetchPypi
-, igraph
-, leidenalg
-, pandas
-, poetry-core
-, pytestCheckHook
-, pythonOlder
-, pythonRelaxDepsHook
-, scipy
-, setuptools
-, spacy
-, spacy-lookups-data
-, en_core_web_sm
-, toolz
-, tqdm
-, wasabi
+{
+  lib,
+  buildPythonPackage,
+  cairocffi,
+  cython,
+  fetchPypi,
+  igraph,
+  leidenalg,
+  pandas,
+  poetry-core,
+  pytestCheckHook,
+  pythonOlder,
+  scipy,
+  setuptools,
+  spacy,
+  spacy-lookups-data,
+  en_core_web_sm,
+  toolz,
+  tqdm,
+  wasabi,
 }:
 
 buildPythonPackage rec {
@@ -33,13 +33,15 @@ buildPythonPackage rec {
   };
 
   nativeBuildInputs = [
-    pythonRelaxDepsHook
     cython
     poetry-core
     setuptools
   ];
 
-  pythonRelaxDeps = [ "igraph" "leidenalg" ];
+  pythonRelaxDeps = [
+    "igraph"
+    "leidenalg"
+  ];
 
   propagatedBuildInputs = [
     cairocffi
@@ -59,9 +61,7 @@ buildPythonPackage rec {
     en_core_web_sm
   ];
 
-  pythonImportsCheck = [
-    "textnets"
-  ];
+  pythonImportsCheck = [ "textnets" ];
 
   # Enables the package to find the cythonized .so files during testing. See #255262
   preCheck = ''