summary refs log tree commit diff
path: root/pkgs/development/python-modules/picosvg/default.nix
blob: d344fca85e597f242ae5ea1dc9e0bed2b9122825 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{ lib
, stdenv
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, setuptools-scm
, absl-py
, lxml
, skia-pathops
, pytestCheckHook
}:
buildPythonPackage rec {
  pname = "picosvg";
  version = "0.22.1";

  src = fetchFromGitHub {
    owner = "googlefonts";
    repo = pname;
    rev = "refs/tags/v${version}";
    hash = "sha256-jG1rfamegnX8GXDwqkGFBFzUeycRLDObJvGbxNk6OpM=";
  };

  patches = [
    # see https://github.com/googlefonts/picosvg/issues/299
    # this patch fixed a failing test case after the update to skia-pathops 0.8
    # as soon as skia-pathops in nixpkgs is updated to 0.8, this patch should be removed
    (fetchpatch {
      url = "https://github.com/googlefonts/picosvg/commit/4e971ed6cd9afb412b2845d29296a0c24f086562.patch";
      hash = "sha256-OZEipNPCSuuqcy4XggBiuGv4HN604dI4N9wlznyAwF0=";
      revert = true;
    })
  ];

  nativeBuildInputs = [
    setuptools-scm
  ];

  propagatedBuildInputs = [
    absl-py
    lxml
    skia-pathops
  ];

  nativeCheckInputs = [
    pytestCheckHook
  ];

  # a few tests are failing on aarch64
  doCheck = !stdenv.isAarch64;

  meta = with lib; {
    description = "Tool to simplify SVGs";
    homepage = "https://github.com/googlefonts/picosvg";
    license = licenses.asl20;
    maintainers = with maintainers; [ _999eagle ];
  };
}