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

33 lines
541 B
Nix
Raw Normal View History

2017-05-30 18:30:24 -07:00
{ buildPythonPackage
, fetchPypi
, numpy
, pytest
, pytestrunner
}:
buildPythonPackage rec {
pname = "fonttools";
version = "3.24.0";
2017-05-30 18:30:24 -07:00
src = fetchPypi {
inherit pname version;
sha256 = "d09126f443bc8797d1b7e76274e65f4c169c04722745953ecf536451b1d9a15f";
2017-05-30 18:30:24 -07:00
extension = "zip";
};
buildInputs = [
numpy
];
checkInputs = [
pytest
pytestrunner
glibcLocales
2017-05-30 18:30:24 -07:00
];
meta = {
homepage = https://github.com/fonttools/fonttools;
2017-05-30 18:30:24 -07:00
description = "A library to manipulate font files from Python";
};
}