about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/fonts/noto-fonts/tools.nix
blob: a9d45128c5b4186135cb3dc53bf05ab034d1219c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ fetchFromGitHub, pythonPackages, lib }:

pythonPackages.buildPythonPackage rec {
  version = "2017-09-25";
  name = "nototools-${version}";

  src = fetchFromGitHub {
    owner = "googlei18n";
    repo = "nototools";
    rev = "v2017-09-25-tooling-for-phase3-update";
    sha256 = "03nzvcvwmrhfrcjhg218q2f3hfrm3vlivp4rk19sc397kh3hisiz";
  };

  propagatedBuildInputs = with pythonPackages; [ fonttools numpy ];

  postPatch = ''
    sed -ie "s^join(_DATA_DIR_PATH,^join(\"$out/third_party/ucd\",^" nototools/unicode_data.py
  '';

  postInstall = ''
    cp -r third_party $out
  '';

  disabled = pythonPackages.isPy3k;

  meta = {
    description = "Noto fonts support tools and scripts plus web site generation";
    license = lib.licenses.asl20;
    homepage = https://github.com/googlei18n/nototools;
  };
}