about summary refs log tree commit diff
path: root/pkgs/development/python-modules/gudhi
diff options
context:
space:
mode:
authorAlexander Kiselyov <aleksandr.kiselyov@gmail.com>2021-08-20 14:34:47 +0300
committerAlexander Kiselyov <aleksandr.kiselyov@gmail.com>2021-08-20 23:06:40 +0300
commit5c0698c5feead94183ab8f161dcbbed30102e485 (patch)
treeead6503e18952880b77d6abc3b0844fa418fd68e /pkgs/development/python-modules/gudhi
parenteb683a5d7753168523c9eb5b9166937f83327e62 (diff)
python3Packages.gudhi: minor fixes from PR review
Diffstat (limited to 'pkgs/development/python-modules/gudhi')
-rw-r--r--pkgs/development/python-modules/gudhi/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/gudhi/default.nix b/pkgs/development/python-modules/gudhi/default.nix
index c1f6dbbea081e..03b26927cf35c 100644
--- a/pkgs/development/python-modules/gudhi/default.nix
+++ b/pkgs/development/python-modules/gudhi/default.nix
@@ -37,8 +37,11 @@ buildPythonPackage rec {
   propagatedBuildInputs = [ numpy scipy ];
   checkInputs = [ pytest ];
 
-  enableParallelBuilding = true;
-  cmakeFlags = "-DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_PYTHON=ON -DPython_ADDITIONAL_VERSIONS=3";
+  cmakeFlags = [
+    "-DCMAKE_BUILD_TYPE=Release"
+    "-DWITH_GUDHI_PYTHON=ON"
+    "-DPython_ADDITIONAL_VERSIONS=3"
+  ];
 
   preBuild = ''
     cd src/python
@@ -53,7 +56,7 @@ buildPythonPackage rec {
 
   meta = {
     description = "Library for Computational Topology and Topological Data Analysis (TDA)";
-    homepage = "https://gudhi.inria.fr/python/3.4.1/";
+    homepage = "https://gudhi.inria.fr/python/latest/";
     downloadPage = "https://github.com/GUDHI/gudhi-devel";
     license = with lib.licenses; [ mit gpl3 ];
     maintainers = with lib.maintainers; [ yl3dy ];