2021-03-07 01:58:01 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy3k
|
|
|
|
, cairocffi
|
|
|
|
, cssselect2
|
|
|
|
, defusedxml
|
|
|
|
, pillow
|
|
|
|
, tinycss2
|
|
|
|
, pytestCheckHook
|
|
|
|
, pytest-runner
|
|
|
|
, pytest-flake8
|
|
|
|
, pytest-isort
|
|
|
|
}:
|
2018-03-31 16:42:33 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2018-04-07 12:57:20 +01:00
|
|
|
pname = "CairoSVG";
|
2021-03-07 01:58:01 +00:00
|
|
|
version = "2.5.2";
|
2018-04-07 12:57:20 +01:00
|
|
|
disabled = !isPy3k;
|
2018-03-31 16:42:33 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-03-07 01:58:01 +00:00
|
|
|
sha256 = "sha256-sLmSnPXboAUXjXRqgDb88AJVUPSYylTbYYczIjhHg7w=";
|
2018-03-31 16:42:33 +01:00
|
|
|
};
|
|
|
|
|
2021-03-08 10:57:33 +00:00
|
|
|
nativeBuildInputs = [ pytest-runner ];
|
2021-03-07 01:58:01 +00:00
|
|
|
|
2018-04-07 12:57:20 +01:00
|
|
|
propagatedBuildInputs = [ cairocffi cssselect2 defusedxml pillow tinycss2 ];
|
|
|
|
|
2021-03-07 01:58:01 +00:00
|
|
|
checkInputs = [ pytestCheckHook pytest-flake8 pytest-isort ];
|
|
|
|
|
|
|
|
pytestFlagsArray = [
|
|
|
|
"cairosvg/test_api.py"
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "cairosvg" ];
|
2018-03-31 16:42:33 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://cairosvg.org";
|
2021-03-07 01:58:01 +00:00
|
|
|
license = licenses.lgpl3Plus;
|
2018-03-31 16:42:33 +01:00
|
|
|
description = "SVG converter based on Cairo";
|
2021-03-07 01:58:01 +00:00
|
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
2018-03-31 16:42:33 +01:00
|
|
|
};
|
|
|
|
}
|