pythonPackages.cairosvg: 2.5.1 -> 2.5.2
This commit is contained in:
parent
05aff5f842
commit
2d3effa0d0
|
@ -1,25 +1,44 @@
|
||||||
{ lib, buildPythonPackage, fetchPypi, isPy3k, fetchpatch
|
{ lib
|
||||||
, cairocffi, cssselect2, defusedxml, pillow, tinycss2
|
, buildPythonPackage
|
||||||
, pytest, pytestrunner, pytestcov, pytest-flake8, pytest-isort }:
|
, fetchPypi
|
||||||
|
, isPy3k
|
||||||
|
, cairocffi
|
||||||
|
, cssselect2
|
||||||
|
, defusedxml
|
||||||
|
, pillow
|
||||||
|
, tinycss2
|
||||||
|
, pytestCheckHook
|
||||||
|
, pytest-runner
|
||||||
|
, pytest-flake8
|
||||||
|
, pytest-isort
|
||||||
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "CairoSVG";
|
pname = "CairoSVG";
|
||||||
version = "2.5.1";
|
version = "2.5.2";
|
||||||
|
|
||||||
disabled = !isPy3k;
|
disabled = !isPy3k;
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "bfa0deea7fa0b9b2f29e41b747a915c249dbca731a4667c2917e47ff96e773e0";
|
sha256 = "sha256-sLmSnPXboAUXjXRqgDb88AJVUPSYylTbYYczIjhHg7w=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ pytest-runner ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ cairocffi cssselect2 defusedxml pillow tinycss2 ];
|
propagatedBuildInputs = [ cairocffi cssselect2 defusedxml pillow tinycss2 ];
|
||||||
|
|
||||||
checkInputs = [ pytest pytestrunner pytestcov pytest-flake8 pytest-isort ];
|
checkInputs = [ pytestCheckHook pytest-flake8 pytest-isort ];
|
||||||
|
|
||||||
|
pytestFlagsArray = [
|
||||||
|
"cairosvg/test_api.py"
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "cairosvg" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://cairosvg.org";
|
homepage = "https://cairosvg.org";
|
||||||
license = licenses.lgpl3;
|
license = licenses.lgpl3Plus;
|
||||||
description = "SVG converter based on Cairo";
|
description = "SVG converter based on Cairo";
|
||||||
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue