Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / fontfeatures / default.nix
blob17ea4ec4813cdf2370e6d21673b472685e18ccc8
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , fetchpatch
5 , beziers
6 , fonttools
7 , fs
8 , glyphtools
9 , lxml
10 , pytestCheckHook
11 , youseedee
14 buildPythonPackage rec {
15   pname = "fontfeatures";
16   version = "1.8.0";
17   format = "setuptools";
19   src = fetchPypi {
20     pname = "fontFeatures";
21     inherit version;
22     hash = "sha256-XLJD91IyUUjeSqdhWFfIqv9yISPcbU4bgRvXETSHOiY=";
23   };
25   propagatedBuildInputs = [
26     beziers
27     fonttools
28     fs
29     glyphtools
30     lxml
31     youseedee
32   ];
34   doCheck = true;
35   nativeCheckInputs = [
36     pytestCheckHook
37   ];
38   disabledTestPaths = [
39     # These tests require babelfont but we have to leave it out and skip them
40     # to break the cyclic dependency with babelfont.
41     "tests/test_shaping_generic.py"
42     "tests/test_shaping_harfbuzz.py"
43   ];
45   meta = with lib; {
46     description = "Python library for compiling OpenType font features";
47     homepage = "https://github.com/simoncozens/fontFeatures";
48     license = licenses.bsd3;
49     maintainers = with maintainers; [ danc86 ];
50   };