summary refs log tree commit diff
path: root/pkgs/development/python-modules/fontparts/default.nix
blob: dd341fef8b3c1fee158b9b3953c32aedb9e9ea6d (plain) (blame)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib, buildPythonPackage, fetchPypi, python
, fonttools, lxml, fs, unicodedata2
, defcon, fontpens, fontmath, booleanoperations
, pytest
}:

buildPythonPackage rec {
  pname = "fontParts";
  version = "0.9.2";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0hwzdppmrrw1xz49x36h6mcsrwya1f3zpqrc206y73j4pbn7fh0k";
    extension = "zip";
  };

  propagatedBuildInputs = [
    booleanoperations
    fonttools
    unicodedata2  # fonttools[unicode] extra
    lxml          # fonttools[lxml] extra
    fs            # fonttools[ufo] extra
    defcon
    fontpens      # defcon[pens] extra
    fontmath
  ];

  checkPhase = ''
    ${python.interpreter} Lib/fontParts/fontshell/test.py
  '';
  checkInputs = [ pytest ];

  meta = with lib; {
    description = "An API for interacting with the parts of fonts during the font development process.";
    homepage = "https://github.com/robotools/fontParts";
    license = licenses.mit;
    maintainers = [ maintainers.sternenseemann ];
  };
}