about summary refs log tree commit diff
path: root/pkgs/development/python-modules/isosurfaces/default.nix
blob: 7356db3a2744988bb72381eb067c610a99727017 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
  lib,
  buildPythonPackage,
  fetchPypi,
  numpy,
}:

buildPythonPackage rec {
  pname = "isosurfaces";
  version = "0.1.2";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "sha256-+lHr6GTqk1WyaDDif91qQdWli0GfqNS0fjuLgHGNbiE=";
  };

  propagatedBuildInputs = [ numpy ];

  # no tests defined upstream
  doCheck = false;

  pythonImportsCheck = [ "isosurfaces" ];

  meta = with lib; {
    homepage = "https://github.com/jared-hughes/isosurfaces";
    description = "Construct isolines/isosurfaces of a 2D/3D scalar field defined by a function";
    longDescription = ''
      Construct isolines/isosurfaces of a 2D/3D scalar field defined by a
      function, i.e. curves over which f(x,y)=0 or surfaces over which
      f(x,y,z)=0. Most similar libraries use marching squares or similar over a
      uniform grid, but this uses a quadtree to avoid wasting time sampling
      many far from the implicit surface.
    '';
    license = licenses.mit;
    maintainers = with maintainers; [ ];
  };
}