about summary refs log tree commit diff
path: root/pkgs/development/python-modules/tess/default.nix
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2019-05-07 15:02:39 -0400
committerChris Ostrouchov <chris.ostrouchov@gmail.com>2019-05-07 15:02:39 -0400
commit165822f8e8a20df2cc23f2da69470f0d4133ce5d (patch)
treed51274944d6179cb7a9c9bf362a6eb977d5d04bd /pkgs/development/python-modules/tess/default.nix
parent929fe5ca2129d257b20d2cb22e195f8ed8cda9e8 (diff)
downloadnixlib-165822f8e8a20df2cc23f2da69470f0d4133ce5d.tar
nixlib-165822f8e8a20df2cc23f2da69470f0d4133ce5d.tar.gz
nixlib-165822f8e8a20df2cc23f2da69470f0d4133ce5d.tar.bz2
nixlib-165822f8e8a20df2cc23f2da69470f0d4133ce5d.tar.lz
nixlib-165822f8e8a20df2cc23f2da69470f0d4133ce5d.tar.xz
nixlib-165822f8e8a20df2cc23f2da69470f0d4133ce5d.tar.zst
nixlib-165822f8e8a20df2cc23f2da69470f0d4133ce5d.zip
pythonPackages.tess: init at unstable-2019-05-07
Diffstat (limited to 'pkgs/development/python-modules/tess/default.nix')
-rw-r--r--pkgs/development/python-modules/tess/default.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/tess/default.nix b/pkgs/development/python-modules/tess/default.nix
new file mode 100644
index 000000000000..987fbf010197
--- /dev/null
+++ b/pkgs/development/python-modules/tess/default.nix
@@ -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 ];
+  };
+}