nixpkgs/pkgs/development/python-modules/fonttools/default.nix
2018-06-21 07:49:09 +02:00

38 lines
611 B
Nix

{ buildPythonPackage
, fetchPypi
, numpy
, pytest
, pytestrunner
, glibcLocales
}:
buildPythonPackage rec {
pname = "fonttools";
version = "3.27.1";
src = fetchPypi {
inherit pname version;
sha256 = "a81b57be6c9b556065d7f67a9ba4eb050c5074590f933d4902cd6ef331865aee";
extension = "zip";
};
buildInputs = [
numpy
];
checkInputs = [
pytest
pytestrunner
glibcLocales
];
preCheck = ''
export LC_ALL="en_US.UTF-8"
'';
meta = {
homepage = https://github.com/fonttools/fonttools;
description = "A library to manipulate font files from Python";
};
}