2021-07-21 07:28:18 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy27
|
|
|
|
, fonttools, setuptools-scm
|
2021-07-24 12:14:16 +00:00
|
|
|
, pytest, pytest-runner
|
2020-09-25 04:45:31 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "fontMath";
|
2022-05-18 14:49:53 +00:00
|
|
|
version = "0.9.2";
|
2021-07-21 07:28:18 +00:00
|
|
|
disabled = isPy27;
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2022-05-18 14:49:53 +00:00
|
|
|
sha256 = "sha256-TIsccR4cv0upPD0IQ5NbBmGXMTEmGvCGCL3hfeEBhAQ=";
|
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 ];
|
2021-07-24 12:14:16 +00:00
|
|
|
checkInputs = [ pytest pytest-runner ];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|