depot/third_party/nixpkgs/pkgs/development/python-modules/fontmath/default.nix
Default email 58f8944c92 Project import generated by Copybara.
GitOrigin-RevId: 5aba0fe9766a7201a336249fd6cb76e0d7ba2faf
2020-09-24 23:45:31 -05:00

25 lines
624 B
Nix

{ lib, buildPythonPackage, fetchPypi
, fonttools
, pytest, pytestrunner
}:
buildPythonPackage rec {
pname = "fontMath";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "09xdqdjyjlx5k9ymi36d7hkgvn55zzjzd65l2yqidkfazlmh14ss";
extension = "zip";
};
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 ];
};
}