depot/third_party/nixpkgs/pkgs/development/python-modules/tess/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

35 lines
674 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
cython,
numpy,
scipy,
}:
buildPythonPackage {
pname = "tess";
version = "unstable-2019-05-07";
format = "setuptools";
src = fetchFromGitHub {
owner = "wackywendell";
repo = "tess";
rev = "22c19df952732f9749637d1bf6d7b676b6c7b26c";
sha256 = "0pj18nrfx749fjc6bjdk5r3g1104c6jy6xg7jrpmssllhypbb1m4";
};
buildInputs = [ cython ];
propagatedBuildInputs = [
numpy
scipy
];
meta = with lib; {
description = "Module for calculating and analyzing Voronoi tessellations";
homepage = "https://tess.readthedocs.org";
license = licenses.bsd3;
maintainers = [ ];
};
}