summary refs log tree commit diff
path: root/pkgs/development/python-modules/geopandas
diff options
context:
space:
mode:
authorChris Ostrouchov <chris.ostrouchov@gmail.com>2018-09-06 12:13:27 -0400
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2018-09-06 18:50:11 +0200
commit1d6fd659570082ef852407f08d0f78ada8209da8 (patch)
tree58ec3711bdfbccffecc8ea589d1abcad33dca38b /pkgs/development/python-modules/geopandas
parent13050ccc0b315082ea20bc418448204b071bb9c8 (diff)
downloadnixpkgs-1d6fd659570082ef852407f08d0f78ada8209da8.tar
nixpkgs-1d6fd659570082ef852407f08d0f78ada8209da8.tar.gz
nixpkgs-1d6fd659570082ef852407f08d0f78ada8209da8.tar.bz2
nixpkgs-1d6fd659570082ef852407f08d0f78ada8209da8.tar.lz
nixpkgs-1d6fd659570082ef852407f08d0f78ada8209da8.tar.xz
nixpkgs-1d6fd659570082ef852407f08d0f78ada8209da8.tar.zst
nixpkgs-1d6fd659570082ef852407f08d0f78ada8209da8.zip
pythonPackages.geopandas: 0.3.0 -> 0.4.0
Additionally fix issue with tests failing for 18.09 release.

Tests required url fetch. Disabled with "not web".
Diffstat (limited to 'pkgs/development/python-modules/geopandas')
-rw-r--r--pkgs/development/python-modules/geopandas/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/geopandas/default.nix b/pkgs/development/python-modules/geopandas/default.nix
index cab25a60f3b..976df095261 100644
--- a/pkgs/development/python-modules/geopandas/default.nix
+++ b/pkgs/development/python-modules/geopandas/default.nix
@@ -1,23 +1,23 @@
 { stdenv, buildPythonPackage, fetchFromGitHub
 , pandas, shapely, fiona, descartes, pyproj
-, pytest }:
+, pytest, Rtree }:
 
 buildPythonPackage rec {
   pname = "geopandas";
-  version = "0.3.0";
+  version = "0.4.0";
   name = pname + "-" + version;
 
   src = fetchFromGitHub {
     owner = "geopandas";
     repo = "geopandas";
     rev = "v${version}";
-    sha256 = "0maafafr7sjjmlg2f19bizg06c8a5z5igmbcgq6kgmi7rklx8xxz";
+    sha256 = "025zpgck5pnmidvzk0805pr345rd7k6z66qb2m34gjh1814xjkhv";
   };
 
-  checkInputs = [ pytest ];
+  checkInputs = [ pytest Rtree ];
 
   checkPhase = ''
-    py.test geopandas
+    py.test geopandas -m "not web"
   '';
 
   propagatedBuildInputs = [