From d229db38d2b5de53348c39edd7c86bf462d97b18 Mon Sep 17 00:00:00 2001 From: Mathnerd314 Date: Sat, 19 Sep 2015 16:21:29 -0600 Subject: [PATCH] nototools: init at git-2015-09-16 --- pkgs/top-level/python-packages.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e9c3192a412..25757000934 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -8248,6 +8248,29 @@ let }; }; + nototools = buildPythonPackage rec { + version = "git-2015-09-16"; + name = "nototools-${version}"; + disabled = isPy3k; + + pythonPath = with self; [ 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 + ''; + + src = pkgs.fetchFromGitHub { + owner = "googlei18n"; + repo = "nototools"; + rev = "5a79bee819941849da7b414447929fc7ba6c2c08"; + sha256 = "0srrmyrjgksk4c6smgi1flyq325r4ma8r6bpkvbn731q3yykhmaa"; + }; + }; + rainbowstream = buildPythonPackage rec { name = "rainbowstream-${version}"; version = "1.2.7";