about summary refs log tree commit diff
path: root/pkgs/data/fonts
diff options
context:
space:
mode:
authorjopejoe1 <johannes@joens.email>2023-12-06 19:17:41 +0100
committerJörg Thalheim <Mic92@users.noreply.github.com>2023-12-13 21:28:44 +0100
commitc73fdc2fdc20093f2fff38100c1e36256058726e (patch)
treee648a0fb31daf6583b6344927d34f78b5c25d914 /pkgs/data/fonts
parent79ddf33f84364fa3b857ac3d06ecce91d8429ba5 (diff)
python311Packages.nototools: move out of noto-fonts folder
Diffstat (limited to 'pkgs/data/fonts')
-rw-r--r--pkgs/data/fonts/noto-fonts/tools.nix78
1 files changed, 0 insertions, 78 deletions
diff --git a/pkgs/data/fonts/noto-fonts/tools.nix b/pkgs/data/fonts/noto-fonts/tools.nix
deleted file mode 100644
index 1b515b486f5f9..0000000000000
--- a/pkgs/data/fonts/noto-fonts/tools.nix
+++ /dev/null
@@ -1,78 +0,0 @@
-{ fetchFromGitHub, lib, buildPythonPackage, pythonOlder
-, afdko, appdirs, attrs, booleanoperations, brotlipy, click
-, defcon, fontmath, fontparts, fontpens, fonttools, lxml
-, mutatormath, pathspec, psautohint, pyclipper, pytz, regex, scour
-, toml, typed-ast, ufonormalizer, ufoprocessor, unicodedata2, zopfli
-, pillow, six, bash, setuptools-scm }:
-
-buildPythonPackage rec {
-  pname = "nototools";
-  version = "0.2.17";
-
-  disabled = pythonOlder "3.6";
-
-  src = fetchFromGitHub {
-    owner = "googlefonts";
-    repo = "nototools";
-    rev = "v${version}";
-    sha256 = "0jxydivqzggirc31jv7b4mrsjkg646zmra5m4h0pk4amgy65rvyp";
-  };
-
-  postPatch = ''
-    sed -i 's/use_scm_version=.*,/version="${version}",/' setup.py
-  '';
-
-  nativeBuildInputs = [ setuptools-scm ];
-
-  propagatedBuildInputs = [
-    afdko
-    appdirs
-    attrs
-    booleanoperations
-    brotlipy
-    click
-    defcon
-    fontmath
-    fontparts
-    fontpens
-    fonttools
-    lxml
-    mutatormath
-    pathspec
-    psautohint
-    pyclipper
-    pytz
-    regex
-    scour
-    toml
-    typed-ast
-    ufonormalizer
-    ufoprocessor
-    unicodedata2
-    zopfli
-  ];
-
-  nativeCheckInputs = [
-    pillow
-    six
-    bash
-  ];
-
-  checkPhase = ''
-    patchShebangs tests/
-    cd tests
-    rm gpos_diff_test.py # needs ttxn?
-    ./run_tests
-  '';
-
-  postInstall = ''
-    cp -r third_party $out
-  '';
-
-  meta = with lib; {
-    description = "Noto fonts support tools and scripts plus web site generation";
-    homepage = "https://github.com/googlefonts/nototools";
-    license = licenses.asl20;
-    maintainers = with maintainers; [ ];
-  };
-}