nixpkgs/pkgs/development/python-modules/fonttools/default.nix

40 lines
637 B
Nix
Raw Normal View History

{ lib
, buildPythonPackage
2017-05-31 02:30:24 +01:00
, fetchPypi
, numpy
, pytest
, pytestrunner
2018-03-02 02:21:19 +00:00
, glibcLocales
2017-05-31 02:30:24 +01:00
}:
buildPythonPackage rec {
pname = "fonttools";
2019-05-28 23:17:03 +01:00
version = "3.42.0";
2017-05-31 02:30:24 +01:00
src = fetchPypi {
inherit pname version;
2019-05-28 23:17:03 +01:00
sha256 = "0w0ncs61821bnc2smfllnhfw5b8fwz972yqcgb64lr5qiwxkj2y0";
2017-05-31 02:30:24 +01:00
extension = "zip";
};
buildInputs = [
numpy
];
checkInputs = [
pytest
pytestrunner
glibcLocales
2017-05-31 02:30:24 +01:00
];
2018-03-02 02:21:19 +00:00
preCheck = ''
export LC_ALL="en_US.UTF-8"
'';
2017-05-31 02:30:24 +01:00
meta = {
homepage = https://github.com/fonttools/fonttools;
2017-05-31 02:30:24 +01:00
description = "A library to manipulate font files from Python";
license = lib.licenses.mit;
2017-05-31 02:30:24 +01:00
};
}