Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / svglib / default.nix
blob61ac8a625656faff98864bb0f9dff1e39d9133e6
1 { lib
2 , buildPythonPackage
3 , pythonOlder
4 , fetchPypi
5 , cssselect2
6 , lxml
7 , pillow
8 , pytestCheckHook
9 , reportlab
10 , tinycss2
13 buildPythonPackage rec {
14   pname = "svglib";
15   version = "1.5.1";
16   format = "setuptools";
18   disabled = pythonOlder "3.7";
20   src = fetchPypi {
21     inherit pname version;
22     hash = "sha256-Oudl06lAnuYMD7TSTC3raoBheqknBU9bzX/JjwaV5Yc=";
23   };
25   propagatedBuildInputs = [
26     cssselect2
27     lxml
28     pillow
29     reportlab
30     tinycss2
31   ];
33   nativeCheckInputs = [
34     pytestCheckHook
35   ];
37   disabledTests = [
38     # Ignore tests that require network access (TestWikipediaFlags and TestW3CSVG), and tests that
39     # require files missing in the 1.0.0 PyPI release (TestOtherFiles).
40     "TestWikipediaFlags"
41     "TestW3CSVG"
42     "TestOtherFiles"
43   ];
45   pythonImportsCheck = [
46     "svglib.svglib"
47   ];
49   meta = with lib; {
50     description = "A pure-Python library for reading and converting SVG";
51     mainProgram = "svg2pdf";
52     homepage = "https://github.com/deeplook/svglib";
53     changelog = "https://github.com/deeplook/svglib/blob/v${version}/CHANGELOG.rst";
54     license = licenses.lgpl3Only;
55     maintainers = with maintainers; [ trepetti ];
56   };