depot/third_party/nixpkgs/pkgs/development/python-modules/svg-path/default.nix
Default email 3a4df29a92 Project import generated by Copybara.
GitOrigin-RevId: 3d7435c638baffaa826b85459df0fff47f12317d
2022-06-16 19:23:12 +02:00

41 lines
724 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pillow
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "svg.path";
version = "6.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-i0Rx37c2GwibZstC2pZBWO0A6aXKEVuKaaxPXcJHSj8=";
};
checkInputs = [
pillow
pytestCheckHook
];
disabledTests = [
# generated image differs from example
"test_image"
];
pythonImportsCheck = [
"svg.path"
];
meta = with lib; {
description = "SVG path objects and parser";
homepage = "https://github.com/regebro/svg.path";
license = licenses.mit;
maintainers = with maintainers; [ goibhniu ];
};
}