diff options
Diffstat (limited to 'pkgs/development/python-modules/dehinter/default.nix')
-rw-r--r-- | pkgs/development/python-modules/dehinter/default.nix | 21 |
1 files changed, 8 insertions, 13 deletions
diff --git a/pkgs/development/python-modules/dehinter/default.nix b/pkgs/development/python-modules/dehinter/default.nix index 276959b84b32..55dc1c503fb4 100644 --- a/pkgs/development/python-modules/dehinter/default.nix +++ b/pkgs/development/python-modules/dehinter/default.nix @@ -1,8 +1,9 @@ -{ lib -, buildPythonPackage -, fetchFromGitHub -, fonttools -, pytestCheckHook +{ + lib, + buildPythonPackage, + fetchFromGitHub, + fonttools, + pytestCheckHook, }: buildPythonPackage rec { @@ -18,14 +19,9 @@ buildPythonPackage rec { hash = "sha256-l988SW6OWKXzJK0WGAJZR/QDFvgnSir+5TwMMvFcOxg="; }; - propagatedBuildInputs = [ - fonttools - ]; + propagatedBuildInputs = [ fonttools ]; - doCheck = true; - nativeCheckInputs = [ - pytestCheckHook - ]; + nativeCheckInputs = [ pytestCheckHook ]; meta = with lib; { description = "Utility for removing hinting data from TrueType and OpenType fonts"; @@ -35,4 +31,3 @@ buildPythonPackage rec { maintainers = with maintainers; [ danc86 ]; }; } - |