mastodon: 4.3.1 -> 4.3.2 (#361487)
[NixPkgs.git] / pkgs / development / python-modules / tess / default.nix
blobd0443f82392a9a4173f88cbd534d334b72d728ac
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   cython,
6   numpy,
7   scipy,
8 }:
10 buildPythonPackage {
11   pname = "tess";
12   version = "unstable-2019-05-07";
13   format = "setuptools";
15   src = fetchFromGitHub {
16     owner = "wackywendell";
17     repo = "tess";
18     rev = "22c19df952732f9749637d1bf6d7b676b6c7b26c";
19     sha256 = "0pj18nrfx749fjc6bjdk5r3g1104c6jy6xg7jrpmssllhypbb1m4";
20   };
22   buildInputs = [ cython ];
24   propagatedBuildInputs = [
25     numpy
26     scipy
27   ];
29   meta = with lib; {
30     description = "Module for calculating and analyzing Voronoi tessellations";
31     homepage = "https://tess.readthedocs.org";
32     license = licenses.bsd3;
33     maintainers = [ ];
34   };