3321e63b12
Conflicts: - pkgs/development/python-modules/sphinx-autobuild/default.nix
56 lines
1.2 KiB
Nix
56 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 = with lib; {
|
|
homepage = "https://cairosvg.org";
|
|
changelog = "https://github.com/Kozea/CairoSVG/releases/tag/${version}";
|
|
license = licenses.lgpl3Plus;
|
|
description = "SVG converter based on Cairo";
|
|
mainProgram = "cairosvg";
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|