about summary refs log tree commit diff
path: root/pkgs/development/python-modules/babelfont/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/babelfont/default.nix')
-rw-r--r--pkgs/development/python-modules/babelfont/default.nix30
1 files changed, 22 insertions, 8 deletions
diff --git a/pkgs/development/python-modules/babelfont/default.nix b/pkgs/development/python-modules/babelfont/default.nix
index ffdc8953c36a8..cc64639537e1e 100644
--- a/pkgs/development/python-modules/babelfont/default.nix
+++ b/pkgs/development/python-modules/babelfont/default.nix
@@ -9,26 +9,32 @@
   glyphslib,
   openstep-plist,
   orjson,
-  poetry-core,
   pytestCheckHook,
+  setuptools,
+  setuptools-scm,
   ufolib2,
+  vfblib,
 }:
 
 buildPythonPackage rec {
   pname = "babelfont";
-  version = "3.0.1";
+  version = "3.0.5";
+  pyproject = true;
 
   # PyPI source tarballs omit tests, fetch from Github instead
   src = fetchFromGitHub {
     owner = "simoncozens";
     repo = pname;
-    rev = "v${version}";
-    hash = "sha256-1DHcJDVaCgIAODyf5UUrXej8x3ySD4+6/KtxuF2yFV4=";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-9PEOkkm7qH4ExiJJKrTZX5Ph/urtOyFsy7jjtFepncU=";
   };
 
-  pyproject = true;
+  build-system = [
+    setuptools
+    setuptools-scm
+  ];
 
-  propagatedBuildInputs = [
+  dependencies = [
     cu2qu
     fontfeatures
     fonttools
@@ -36,15 +42,23 @@ buildPythonPackage rec {
     openstep-plist
     orjson
     ufolib2
+    vfblib
   ];
-  nativeBuildInputs = [ poetry-core ];
 
-  doCheck = true;
   nativeCheckInputs = [
     defcon
     pytestCheckHook
   ];
 
+  # Want non exsiting test data
+  disabledTests = [
+    "test_rename"
+    "test_rename_nested"
+    "test_rename_contextual"
+  ];
+
+  disabledTestPaths = [ "tests/test_glyphs3_roundtrip.py" ];
+
   meta = with lib; {
     description = "Python library to load, examine, and save fonts in a variety of formats";
     mainProgram = "babelfont";