summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/python-fontconfig/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/python-fontconfig/default.nix')
-rw-r--r--pkgs/development/python-modules/python-fontconfig/default.nix18
1 files changed, 13 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/python-fontconfig/default.nix b/pkgs/development/python-modules/python-fontconfig/default.nix
index 7eab74cb280e..2f90ca56dac6 100644
--- a/pkgs/development/python-modules/python-fontconfig/default.nix
+++ b/pkgs/development/python-modules/python-fontconfig/default.nix
@@ -1,10 +1,18 @@
-{ lib, buildPythonPackage, fetchPypi, fontconfig, python, cython, freefont_ttf, makeFontsConf }:
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ fontconfig,
+ python,
+ cython,
+ freefont_ttf,
+ makeFontsConf,
+}:
let
- fontsConf = makeFontsConf {
- fontDirectories = [ freefont_ttf ];
- };
-in buildPythonPackage rec {
+ fontsConf = makeFontsConf { fontDirectories = [ freefont_ttf ]; };
+in
+buildPythonPackage rec {
pname = "python-fontconfig";
version = "0.5.1";