fonttools: 3.0 -> 3.13.0
This commit is contained in:
parent
c9e63ded80
commit
4e3afed6dc
@ -11418,21 +11418,28 @@ in {
|
|||||||
};
|
};
|
||||||
|
|
||||||
fonttools = buildPythonPackage (rec {
|
fonttools = buildPythonPackage (rec {
|
||||||
version = "3.0";
|
pname = "fonttools";
|
||||||
name = "fonttools-${version}";
|
version = "3.13.0";
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
src = fetchPypi {
|
||||||
url = "mirror://pypi/F/FontTools/fonttools-${version}.tar.gz";
|
inherit pname version;
|
||||||
sha256 = "0f4iblpbf3y3ghajiccvdwk2f46cim6dsj6fq1kkrbqfv05dr4nz";
|
sha256 = "5ec278ff231d0c88afe8266e911ee0f8e66c8501c53f5f144a1a0abbc936c6b8";
|
||||||
|
extension = "zip";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with self; [
|
buildInputs = with self; [
|
||||||
numpy
|
numpy
|
||||||
];
|
];
|
||||||
|
|
||||||
|
checkInputs = with self; [
|
||||||
|
pytest
|
||||||
|
pytestrunner
|
||||||
|
];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/behdad/fonttools";
|
homepage = "https://github.com/fonttools/fonttools";
|
||||||
description = "Font file processing tools";
|
description = "A library to manipulate font files from Python";
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user