Merge pull request #169159 from r-ryantm/auto-update/python3.10-svg.path

python310Packages.svg-path: 5.1 -> 6.0
This commit is contained in:
Fabian Affolter 2022-04-18 21:59:53 +02:00 committed by GitHub
commit 0c84c56b73
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,15 +3,19 @@
, fetchPypi
, pillow
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "svg.path";
version = "5.1";
version = "6.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-CltSq7BGQNmC/3EI5N0wx4QDu0zZWMJLovCUdtXZIws=";
hash = "sha256-X78HaJFzywl3aA4Sl58wHQu2r1NVyjlsww0+ESx5TdU=";
};
checkInputs = [
@ -24,7 +28,9 @@ buildPythonPackage rec {
"test_image"
];
pythonImportsCheck = [ "svg.path" ];
pythonImportsCheck = [
"svg.path"
];
meta = with lib; {
description = "SVG path objects and parser";