1{ lib
2, buildPythonPackage
3, fetchFromGitHub
4, cython
5, numpy
6, scipy
7}:
8
9buildPythonPackage {
10 pname = "tess";
11 version = "unstable-2019-05-07";
12
13 src = fetchFromGitHub {
14 owner = "wackywendell";
15 repo = "tess";
16 rev = "22c19df952732f9749637d1bf6d7b676b6c7b26c";
17 sha256 = "0pj18nrfx749fjc6bjdk5r3g1104c6jy6xg7jrpmssllhypbb1m4";
18 };
19
20 buildInputs = [ cython ];
21
22 propagatedBuildInputs = [ numpy scipy ];
23
24 meta = with lib; {
25 description = "A module for calculating and analyzing Voronoi tessellations";
26 homepage = "https://tess.readthedocs.org";
27 license = licenses.bsd3;
28 maintainers = [ maintainers.costrouc ];
29 };
30}