depot/third_party/nixpkgs/pkgs/development/python-modules/picosvg/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

44 lines
888 B
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
setuptools-scm,
absl-py,
lxml,
skia-pathops,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "picosvg";
version = "0.22.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "googlefonts";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-jG1rfamegnX8GXDwqkGFBFzUeycRLDObJvGbxNk6OpM=";
};
nativeBuildInputs = [ setuptools-scm ];
propagatedBuildInputs = [
absl-py
lxml
skia-pathops
];
nativeCheckInputs = [ pytestCheckHook ];
# a few tests are failing on aarch64
doCheck = !stdenv.hostPlatform.isAarch64;
meta = with lib; {
description = "Tool to simplify SVGs";
mainProgram = "picosvg";
homepage = "https://github.com/googlefonts/picosvg";
license = licenses.asl20;
maintainers = with maintainers; [ _999eagle ];
};
}