Merge pull request #209994 from r-ryantm/auto-update/python310Packages.svglib

python310Packages.svglib: 1.4.1 -> 1.5.1

authored by

Fabian Affolter and committed by
GitHub
e1f92323 0bffc5bb

+15 -11
+15 -11
pkgs/development/python-modules/svglib/default.nix
··· 12 12 13 13 buildPythonPackage rec { 14 14 pname = "svglib"; 15 - version = "1.4.1"; 15 + version = "1.5.1"; 16 + format = "setuptools"; 16 17 17 18 disabled = pythonOlder "3.7"; 18 19 19 - format = "setuptools"; 20 - 21 20 src = fetchPypi { 22 21 inherit pname version; 23 - sha256 = "sha256-SMJHBsI7tCYhc7b6Seq7EK+hW4QS8UKDEgVJUXzPoxQ="; 22 + hash = "sha256-Oudl06lAnuYMD7TSTC3raoBheqknBU9bzX/JjwaV5Yc="; 24 23 }; 25 24 26 25 propagatedBuildInputs = [ ··· 35 34 pytestCheckHook 36 35 ]; 37 36 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 - pytestFlagsArray = [ 41 - "-k 'not TestWikipediaFlags and not TestW3CSVG and not TestOtherFiles'" 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" 42 43 ]; 43 44 44 - pythonImportsCheck = [ "svglib.svglib" ]; 45 + pythonImportsCheck = [ 46 + "svglib.svglib" 47 + ]; 45 48 46 49 meta = with lib; { 47 - homepage = "https://github.com/deeplook/svglib"; 48 50 description = "A pure-Python library for reading and converting SVG"; 49 - license = licenses.lgpl3; 51 + homepage = "https://github.com/deeplook/svglib"; 52 + changelog = "https://github.com/deeplook/svglib/blob/v${version}/CHANGELOG.rst"; 53 + license = licenses.lgpl3Only; 50 54 maintainers = with maintainers; [ trepetti ]; 51 55 }; 52 56 }