nixpkgs/pkgs/development/python-modules/tess/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

36 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 = [ ];
};
}