Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions pkgs/development/python-modules/fontbakery/tests.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,10 @@ runCommand "${pname}-tests" { meta.timeout = 5; } ''
# Check the version matches what we packaged.
${fontbakery}/bin/fontbakery --version | grep -q "${version}"

# Can it list its own subcommands?
${fontbakery}/bin/fontbakery --list-subcommands >>$out

# Unpack src to get some test fonts.
tar -xzf ${src} --strip-components=1 ${pname}-${version}/data/test

# Run some font checks.
${fontbakery}/bin/fontbakery check-ufo-sources --no-progress --no-colors data/test/test.ufo >>$out
${fontbakery}/bin/fontbakery check-ufo --no-progress --no-colors data/test/test.ufo >>$out
# TODO add more
''
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/fonttools/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

buildPythonPackage rec {
pname = "fonttools";
version = "4.49.0";
version = "4.51.0";
pyproject = true;

disabled = pythonOlder "3.8";
Expand All @@ -35,7 +35,7 @@ buildPythonPackage rec {
owner = pname;
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-8xQVuAnIS/mwYKwI+ow0YArIP8wFTKWGLZ+NCgIFYok=";
hash = "sha256-JUAFGLjyq/2OXlhTB6dIcO3Mq7Rx1HII+sg2TaQfPYU=";
};

build-system = [
Expand Down
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/glyphsets/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
, gflanguages
, glyphslib
, pytestCheckHook
, pyyaml
, requests
, setuptools
, setuptools-scm
Expand All @@ -27,6 +28,7 @@ buildPythonPackage rec {
fonttools
gflanguages
glyphslib
pyyaml
requests
setuptools
unicodedata2
Expand Down
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/ufo2ft/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
, cu2qu
, defcon
, fetchPypi
, fontmath
, fonttools
, pytestCheckHook
, pythonOlder
Expand Down Expand Up @@ -38,6 +39,7 @@ buildPythonPackage rec {

propagatedBuildInputs = [
cu2qu
fontmath
fonttools
defcon
compreffor
Expand Down