Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / tess / default.nix
blobbe8e8ff45e053edda72986be097043bb4f603ad4
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , cython
5 , numpy
6 , scipy
7 }:
9 buildPythonPackage {
10   pname = "tess";
11   version = "unstable-2019-05-07";
13   src = fetchFromGitHub {
14     owner = "wackywendell";
15     repo = "tess";
16     rev = "22c19df952732f9749637d1bf6d7b676b6c7b26c";
17     sha256 = "0pj18nrfx749fjc6bjdk5r3g1104c6jy6xg7jrpmssllhypbb1m4";
18   };
20   buildInputs = [ cython ];
22   propagatedBuildInputs = [ numpy scipy ];
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 = [ ];
29   };