python310Packages.svglib: add changelog to meta

- specify license
This commit is contained in:
Fabian Affolter 2023-01-10 08:44:02 +01:00 committed by GitHub
parent d344bedb19
commit 743313c73f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,14 +13,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "svglib"; pname = "svglib";
version = "1.5.1"; version = "1.5.1";
format = "setuptools";
disabled = pythonOlder "3.7"; disabled = pythonOlder "3.7";
format = "setuptools";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-Oudl06lAnuYMD7TSTC3raoBheqknBU9bzX/JjwaV5Yc="; hash = "sha256-Oudl06lAnuYMD7TSTC3raoBheqknBU9bzX/JjwaV5Yc=";
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
@ -35,18 +34,23 @@ buildPythonPackage rec {
pytestCheckHook pytestCheckHook
]; ];
# Ignore tests that require network access (TestWikipediaFlags and TestW3CSVG), and tests that disabledTests = [
# require files missing in the 1.0.0 PyPI release (TestOtherFiles). # Ignore tests that require network access (TestWikipediaFlags and TestW3CSVG), and tests that
pytestFlagsArray = [ # require files missing in the 1.0.0 PyPI release (TestOtherFiles).
"-k 'not TestWikipediaFlags and not TestW3CSVG and not TestOtherFiles'" "TestWikipediaFlags"
"TestW3CSVG"
"TestOtherFiles"
]; ];
pythonImportsCheck = [ "svglib.svglib" ]; pythonImportsCheck = [
"svglib.svglib"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/deeplook/svglib";
description = "A pure-Python library for reading and converting SVG"; description = "A pure-Python library for reading and converting SVG";
license = licenses.lgpl3; homepage = "https://github.com/deeplook/svglib";
changelog = "https://github.com/deeplook/svglib/blob/v${version}/CHANGELOG.rst";
license = licenses.lgpl3Only;
maintainers = with maintainers; [ trepetti ]; maintainers = with maintainers; [ trepetti ];
}; };
} }