1{ lib, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "svg.path"; 4 version = "4.1"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "7e6847ba690ff620e20f152818d52e1685b993aacbc41b321f8fee3d1cb427db"; 9 }; 10 11 meta = with lib; { 12 description = "SVG path objects and parser"; 13 homepage = "https://github.com/regebro/svg.path"; 14 license = licenses.mit; 15 maintainers = with maintainers; [ goibhniu ]; 16 }; 17}