Unverified Commit 3a15f234 authored by dotlambda's avatar dotlambda Committed by GitHub
Browse files

python3Packages.fontmake: 3.10.1 -> 3.11.0 (#459375)

parents 2161c153 25d99f03
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -17,14 +17,14 @@

buildPythonPackage rec {
  pname = "fontmake";
  version = "3.10.1";
  version = "3.11.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "googlefonts";
    repo = "fontmake";
    tag = "v${version}";
    hash = "sha256-cHFxb7lWUj/7ATynoMGQkhArKWCHHLYvQG5IoaXwVBs=";
    hash = "sha256-H3r5G+lEoIlS7mmQ1abQeZ1cD/aGskphm5X0rAshX+U=";
  };

  build-system = [
+10 −11
Original line number Diff line number Diff line
@@ -6,11 +6,10 @@
  compreffor,
  cu2qu,
  defcon,
  fetchPypi,
  fetchFromGitHub,
  fontmath,
  fonttools,
  pytestCheckHook,
  pythonOlder,
  setuptools-scm,
  skia-pathops,
  syrupy,
@@ -19,14 +18,14 @@

buildPythonPackage rec {
  pname = "ufo2ft";
  version = "3.6.0";
  version = "3.6.2";
  pyproject = true;

  disabled = pythonOlder "3.8";

  src = fetchPypi {
    inherit pname version;
    hash = "sha256-hKqTjD8cTgyxHZnaojPAT5JY11okvLiNOnemoULnpmw=";
  src = fetchFromGitHub {
    owner = "googlefonts";
    repo = "ufo2ft";
    tag = "v${version}";
    hash = "sha256-TIeq4As5nThYck5jQLTdZySfOg51DtkiiYiiWEVSzxo=";
  };

  build-system = [
@@ -69,11 +68,11 @@ buildPythonPackage rec {

  pythonImportsCheck = [ "ufo2ft" ];

  meta = with lib; {
  meta = {
    description = "Bridge from UFOs to FontTools objects";
    homepage = "https://github.com/googlefonts/ufo2ft";
    changelog = "https://github.com/googlefonts/ufo2ft/releases/tag/v${version}";
    license = licenses.mit;
    changelog = "https://github.com/googlefonts/ufo2ft/releases/tag/${src.tag}";
    license = lib.licenses.mit;
    maintainers = [ ];
  };
}