1{ lib 2, buildPythonPackage 3, fetchPypi 4}: 5 6buildPythonPackage rec { 7 version = "1.3.2"; 8 pname = "pyvoro"; 9 10 src = fetchPypi { 11 inherit pname version; 12 sha256 = "f31c047f6e4fc5f66eb0ab43afd046ba82ce247e18071141791364c4998716fc"; 13 }; 14 15 # No tests in package 16 doCheck = false; 17 18 meta = with lib; { 19 homepage = "https://github.com/joe-jordan/pyvoro"; 20 description = "2D and 3D Voronoi tessellations: a python entry point for the voro++ library"; 21 license = licenses.mit; 22 maintainers = [ maintainers.costrouc ]; 23 }; 24}