Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / tess / default.nix
blobb11cf5535d1d19d9c0e57a21587b5cf4343a8eae
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , cython
5 , numpy
6 , scipy
7 }:
9 buildPythonPackage {
10   pname = "tess";
11   version = "unstable-2019-05-07";
12   format = "setuptools";
14   src = fetchFromGitHub {
15     owner = "wackywendell";
16     repo = "tess";
17     rev = "22c19df952732f9749637d1bf6d7b676b6c7b26c";
18     sha256 = "0pj18nrfx749fjc6bjdk5r3g1104c6jy6xg7jrpmssllhypbb1m4";
19   };
21   buildInputs = [ cython ];
23   propagatedBuildInputs = [ numpy scipy ];
25   meta = with lib; {
26     description = "A module for calculating and analyzing Voronoi tessellations";
27     homepage = "https://tess.readthedocs.org";
28     license = licenses.bsd3;
29     maintainers = [ ];
30   };