nixpkgs/pkgs/development/python-modules/cairosvg/default.nix

26 lines
718 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPy3k, fetchpatch
, cairocffi, cssselect2, defusedxml, pillow, tinycss2
2019-03-14 01:27:46 +03:00
, pytest, pytestrunner, pytestcov, pytest-flake8, pytest-isort }:
buildPythonPackage rec {
pname = "CairoSVG";
2019-03-14 01:27:46 +03:00
version = "2.3.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2019-03-14 01:27:46 +03:00
sha256 = "66f333ef5dc79fdfbd3bbe98adc791b1f854e0461067d202fa7b15de66d517ec";
};
propagatedBuildInputs = [ cairocffi cssselect2 defusedxml pillow tinycss2 ];
2019-03-14 01:27:46 +03:00
checkInputs = [ pytest pytestrunner pytestcov pytest-flake8 pytest-isort ];
meta = with stdenv.lib; {
homepage = https://cairosvg.org;
license = licenses.lgpl3;
description = "SVG converter based on Cairo";
};
}