depot/third_party/nixpkgs/pkgs/development/python-modules/svgwrite/default.nix
Default email b450903751 Project import generated by Copybara.
GitOrigin-RevId: 74a1793c659d09d7cf738005308b1f86c90cb59b
2022-09-09 16:08:57 +02:00

35 lines
729 B
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "svgwrite";
version = "1.4.3";
src = fetchFromGitHub {
owner = "mozman";
repo = "svgwrite";
rev = "v${version}";
sha256 = "sha256-uOsrDhE9AwWU7GIrCVuL3uXTPqtrh8sofvo2C5t+25I=";
};
# svgwrite requires Python 3.6 or newer
disabled = pythonOlder "3.6";
checkInputs = [ pytestCheckHook ];
disabledTests = [
# embed_google_web_font test tried to pull font from internet
"test_embed_google_web_font"
];
meta = with lib; {
description = "A Python library to create SVG drawings";
homepage = "https://github.com/mozman/svgwrite";
license = licenses.mit;
};
}