depot/third_party/nixpkgs/pkgs/development/python-modules/svgelements/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

50 lines
895 B
Nix

{ 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 ];
};
}