aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/python-modules/fontmath/default.nix
blob: 7a23abdd03745c9d005a43945ccf8a90995156a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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 ];
  };
}