2021-07-21 07:28:18 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27
|
|
|
|
, fonttools, setuptools-scm
|
2020-09-25 04:45:31 +00:00
|
|
|
, pytest, pytestrunner
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fontMath";
|
2021-07-21 07:28:18 +00:00
|
|
|
version = "0.8.1";
|
|
|
|
disabled = isPy27;
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-07-21 07:28:18 +00:00
|
|
|
sha256 = "0m2z2wwbxwljfcrg8hx4xq538adzcjpc352yqbfw0czbgs5ixmrr";
|
2020-09-25 04:45:31 +00:00
|
|
|
extension = "zip";
|
|
|
|
};
|
|
|
|
|
2021-07-21 07:28:18 +00:00
|
|
|
nativeBuildInputs = [ setuptools-scm ];
|
|
|
|
|
2020-09-25 04:45:31 +00:00
|
|
|
propagatedBuildInputs = [ fonttools ];
|
|
|
|
checkInputs = [ pytest pytestrunner ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A collection of objects that implement fast font, glyph, etc. math";
|
|
|
|
homepage = "https://github.com/robotools/fontMath/";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
|
|
|
};
|
|
|
|
}
|