about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tess/default.nix
blob: d0443f82392a9a4173f88cbd534d334b72d728ac (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
{
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  cython,
  numpy,
  scipy,
}:

buildPythonPackage {
  pname = "tess";
  version = "unstable-2019-05-07";
  format = "setuptools";

  src = fetchFromGitHub {
    owner = "wackywendell";
    repo = "tess";
    rev = "22c19df952732f9749637d1bf6d7b676b6c7b26c";
    sha256 = "0pj18nrfx749fjc6bjdk5r3g1104c6jy6xg7jrpmssllhypbb1m4";
  };

  buildInputs = [ cython ];

  propagatedBuildInputs = [
    numpy
    scipy
  ];

  meta = with lib; {
    description = "Module for calculating and analyzing Voronoi tessellations";
    homepage = "https://tess.readthedocs.org";
    license = licenses.bsd3;
    maintainers = [ ];
  };
}