7 buildPythonPackage rec {
12 inherit pname version;
13 sha256 = "fa1b44e5e59d2f429add49289ab89e36f8dcda49b7badd99e0beea273be331f4";
16 propagatedBuildInputs = [ numpy ];
18 # no tests defined upstream
21 pythonImportsCheck = [ "isosurfaces" ];
24 homepage = "https://github.com/jared-hughes/isosurfaces";
25 description = "Construct isolines/isosurfaces of a 2D/3D scalar field defined by a function";
27 Construct isolines/isosurfaces of a 2D/3D scalar field defined by a
28 function, i.e. curves over which f(x,y)=0 or surfaces over which
29 f(x,y,z)=0. Most similar libraries use marching squares or similar over a
30 uniform grid, but this uses a quadtree to avoid wasting time sampling
31 many far from the implicit surface.
33 license = licenses.mit;
34 maintainers = with maintainers; [ friedelino ];