python3Packages.geopandas: 0.6.3 -> 0.7.0

authored by

Jonathan Ringer and committed by
Jon
63697ed0 2719f569

+4 -3
+4 -3
pkgs/development/python-modules/geopandas/default.nix
··· 1 - { stdenv, buildPythonPackage, fetchFromGitHub 2 , pandas, shapely, fiona, descartes, pyproj 3 , pytest, Rtree }: 4 5 buildPythonPackage rec { 6 pname = "geopandas"; 7 - version = "0.6.3"; 8 9 src = fetchFromGitHub { 10 owner = "geopandas"; 11 repo = "geopandas"; 12 rev = "v${version}"; 13 - sha256 = "11mzb5spwa06h1zhn7z905wcwya2x5srghv82jp5zjka9zdhsycd"; 14 }; 15 16 checkInputs = [ pytest Rtree ];
··· 1 + { stdenv, buildPythonPackage, fetchFromGitHub, isPy27 2 , pandas, shapely, fiona, descartes, pyproj 3 , pytest, Rtree }: 4 5 buildPythonPackage rec { 6 pname = "geopandas"; 7 + version = "0.7.0"; 8 + disabled = isPy27; 9 10 src = fetchFromGitHub { 11 owner = "geopandas"; 12 repo = "geopandas"; 13 rev = "v${version}"; 14 + sha256 = "0cfdvl4cvi0nim1qbmzf7vg0all272i8r0kj4xgdd0hr2j4jdg9p"; 15 }; 16 17 checkInputs = [ pytest Rtree ];