lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.svgwrite: 1.4.1 → 1.4.3

+8 -10
+8 -10
pkgs/development/python-modules/svgwrite/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , pythonOlder 5 - , pytest 5 + , pytestCheckHook 6 6 }: 7 7 8 8 buildPythonPackage rec { 9 9 pname = "svgwrite"; 10 - version = "1.4.1"; 10 + version = "1.4.3"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "mozman"; 14 14 repo = "svgwrite"; 15 15 rev = "v${version}"; 16 - sha256 = "sha256-d//ZUFb5yj51uD1fb6yJJROaQ2MLyfA3Pa84TblqLNk="; 16 + sha256 = "sha256-uOsrDhE9AwWU7GIrCVuL3uXTPqtrh8sofvo2C5t+25I="; 17 17 }; 18 18 19 19 # svgwrite requires Python 3.6 or newer 20 20 disabled = pythonOlder "3.6"; 21 21 22 - checkInputs = [ 23 - pytest 24 - ]; 22 + checkInputs = [ pytestCheckHook ]; 25 23 26 - # embed_google_web_font test tried to pull font from internet 27 - checkPhase = '' 28 - pytest -k "not test_embed_google_web_font" 29 - ''; 24 + disabledTests = [ 25 + # embed_google_web_font test tried to pull font from internet 26 + "test_embed_google_web_font" 27 + ]; 30 28 31 29 meta = with lib; { 32 30 description = "A Python library to create SVG drawings";