Merge pull request #256101 from GaetanLepage/svgelements

python310Packages.svgelements: init at 1.9.6
This commit is contained in:
Nick Cao 2023-09-20 09:39:38 -04:00 committed by GitHub
commit 96c357e5b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,50 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, wheel
, anyio
, numpy
, pillow
, pytest-forked
, pytest-xdist
, pytestCheckHook
, scipy
}:
buildPythonPackage rec {
pname = "svgelements";
version = "1.9.6";
pyproject = true;
src = fetchFromGitHub {
owner = "meerk40t";
repo = "svgelements";
rev = "refs/tags/${version}";
hash = "sha256-nx2sGXeeh8S17TfRDFifQbdSxc4YGsDNnrPSSbxv7S4=";
};
nativeBuildInputs = [
setuptools
wheel
];
pythonImportsCheck = [ "svgelements" ];
nativeCheckInputs = [
anyio
numpy
pillow
pytest-forked
pytest-xdist
pytestCheckHook
scipy
];
meta = with lib; {
description = "SVG Parsing for Elements, Paths, and other SVG Objects";
homepage = "https://github.com/meerk40t/svgelements";
license = licenses.mit;
maintainers = with maintainers; [ GaetanLepage ];
};
}

View File

@ -12583,6 +12583,8 @@ self: super: with self; {
svg-path = callPackage ../development/python-modules/svg-path { };
svgelements = callPackage ../development/python-modules/svgelements { };
svgwrite = callPackage ../development/python-modules/svgwrite { };
sv-ttk = callPackage ../development/python-modules/sv-ttk { };