summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pyicu/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pyicu/default.nix')
-rw-r--r--pkgs/development/python-modules/pyicu/default.nix18
1 files changed, 11 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/pyicu/default.nix b/pkgs/development/python-modules/pyicu/default.nix
index c44bfcd29974..51461e392bce 100644
--- a/pkgs/development/python-modules/pyicu/default.nix
+++ b/pkgs/development/python-modules/pyicu/default.nix
@@ -1,9 +1,10 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, pytestCheckHook
-, six
-, icu
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ pytestCheckHook,
+ six,
+ icu,
}:
buildPythonPackage rec {
@@ -19,7 +20,10 @@ buildPythonPackage rec {
nativeBuildInputs = [ icu ]; # for icu-config, but should be replaced with pkg-config
buildInputs = [ icu ];
- nativeCheckInputs = [ pytestCheckHook six ];
+ nativeCheckInputs = [
+ pytestCheckHook
+ six
+ ];
pythonImportsCheck = [ "icu" ];