Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 462 B view raw
1{ stdenv, buildPythonPackage, fetchPypi }: 2buildPythonPackage rec { 3 pname = "svg.path"; 4 version = "4.0.2"; 5 6 src = fetchPypi { 7 inherit pname version; 8 sha256 = "4bd627ec6526cd5da14f3c6a51205d930187db2d8992aed626825492c033b195"; 9 }; 10 11 meta = with stdenv.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}