Merge pull request #61101 from costrouc/python-tess-init

pythonPackages.tess: init at unstable-2019-05-07
This commit is contained in:
Mario Rodas 2019-05-07 23:02:39 -05:00 committed by GitHub
commit 021a9342ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 32 additions and 0 deletions

View file

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

View file

@ -4346,6 +4346,8 @@ in {
terminado = callPackage ../development/python-modules/terminado { };
tess = callPackage ../development/python-modules/tess { };
testresources = callPackage ../development/python-modules/testresources { };
testtools = callPackage ../development/python-modules/testtools { };