pythonPackages.tess: init at unstable-2019-05-07
This commit is contained in:
parent
929fe5ca21
commit
165822f8e8
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4346,6 +4346,8 @@ in {
|
||||||
|
|
||||||
terminado = callPackage ../development/python-modules/terminado { };
|
terminado = callPackage ../development/python-modules/terminado { };
|
||||||
|
|
||||||
|
tess = callPackage ../development/python-modules/tess { };
|
||||||
|
|
||||||
testresources = callPackage ../development/python-modules/testresources { };
|
testresources = callPackage ../development/python-modules/testresources { };
|
||||||
|
|
||||||
testtools = callPackage ../development/python-modules/testtools { };
|
testtools = callPackage ../development/python-modules/testtools { };
|
||||||
|
|
Loading…
Reference in New Issue