Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 cython, 6 numpy, 7 scipy, 8}: 9 10buildPythonPackage { 11 pname = "tess"; 12 version = "unstable-2019-05-07"; 13 format = "setuptools"; 14 15 src = fetchFromGitHub { 16 owner = "wackywendell"; 17 repo = "tess"; 18 rev = "22c19df952732f9749637d1bf6d7b676b6c7b26c"; 19 sha256 = "0pj18nrfx749fjc6bjdk5r3g1104c6jy6xg7jrpmssllhypbb1m4"; 20 }; 21 22 buildInputs = [ cython ]; 23 24 propagatedBuildInputs = [ 25 numpy 26 scipy 27 ]; 28 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 }; 35}