python312Packages.svg-path: 6.2 -> 6.3 (#353174)

This commit is contained in:
OTABI Tomoya 2024-11-03 21:34:04 +09:00 committed by GitHub
commit a77dfca084
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,8 @@
{
lib,
buildPythonPackage,
fetchPypi,
fetchFromGitHub,
setuptools,
pillow,
pytestCheckHook,
pythonOlder,
@ -9,16 +10,20 @@
buildPythonPackage rec {
pname = "svg.path";
version = "6.2";
format = "setuptools";
version = "6.3";
pyproject = true;
disabled = pythonOlder "3.7";
disabled = pythonOlder "3.8";
src = fetchPypi {
inherit pname version;
hash = "sha256-GiFZ+duJjfk8RjfP08yvfaH9Bz9Z+ppZUMc+RtSqGso=";
src = fetchFromGitHub {
owner = "regebro";
repo = "svg.path";
rev = "refs/tags/${version}";
hash = "sha256-qes6cKw/Ok0WgcPO/NPuREVNUbnlhm82jF90dK7Ay8U=";
};
build-system = [ setuptools ];
nativeCheckInputs = [
pillow
pytestCheckHook
@ -34,6 +39,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "SVG path objects and parser";
homepage = "https://github.com/regebro/svg.path";
changelog = "https://github.com/regebro/svg.path/blob/${version}/CHANGES.txt";
license = licenses.mit;
maintainers = [ ];
};