3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/fonttools/default.nix

33 lines
556 B
Nix
Raw Normal View History

2017-05-31 02:30:24 +01:00
{ buildPythonPackage
, fetchPypi
, numpy
, pytest
, pytestrunner
}:
buildPythonPackage rec {
pname = "fonttools";
2017-08-24 18:34:20 +01:00
version = "3.15.1";
2017-05-31 02:30:24 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-08-24 18:34:20 +01:00
sha256 = "8df4b605a28e313f0f9e0a79502caba4150a521347fdbafc063e52fee34912c2";
2017-05-31 02:30:24 +01:00
extension = "zip";
};
buildInputs = [
numpy
];
checkInputs = [
pytest
pytestrunner
];
meta = {
homepage = https://github.com/fonttools/fonttools;
2017-05-31 02:30:24 +01:00
description = "A library to manipulate font files from Python";
};
}