Merge pull request #61101 from costrouc/python-tess-init
pythonPackages.tess: init at unstable-2019-05-07
This commit is contained in:
commit
021a9342ab
30
pkgs/development/python-modules/tess/default.nix
Normal file
30
pkgs/development/python-modules/tess/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user