nixpkgs/pkgs/development/python-modules/cairosvg/default.nix
2024-09-24 09:58:49 -07:00

62 lines
1.2 KiB
Nix

{
lib,
buildPythonPackage,
cairocffi,
cssselect2,
defusedxml,
fetchPypi,
pillow,
pytestCheckHook,
setuptools,
tinycss2,
}:
buildPythonPackage rec {
pname = "cairosvg";
version = "2.7.1";
pyproject = true;
src = fetchPypi {
pname = "CairoSVG";
inherit version;
hash = "sha256-QyUx1yNHKRuanr+2d3AmtgdWP9hxnEbudC2wrvcnG6A=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [
cairocffi
cssselect2
defusedxml
pillow
tinycss2
];
propagatedNativeBuildInputs = [ cairocffi ];
nativeCheckInputs = [ pytestCheckHook ];
postPatch = ''
substituteInPlace setup.cfg \
--replace "pytest-runner" "" \
--replace "pytest-flake8" "" \
--replace "pytest-isort" "" \
--replace "pytest-cov" "" \
--replace "--flake8" "" \
--replace "--isort" ""
'';
pytestFlagsArray = [ "cairosvg/test_api.py" ];
pythonImportsCheck = [ "cairosvg" ];
meta = {
homepage = "https://cairosvg.org";
changelog = "https://github.com/Kozea/CairoSVG/releases/tag/${version}";
license = lib.licenses.lgpl3Plus;
description = "SVG converter based on Cairo";
mainProgram = "cairosvg";
maintainers = [ lib.maintainers.sarahec ];
};
}