python3Packages.geopandas: 0.6.3 -> 0.7.0

This commit is contained in:
Jonathan Ringer 2020-03-19 11:32:06 -07:00 committed by Jon
parent 2719f569d2
commit 63697ed0c2

View file

@ -1,16 +1,17 @@
{ stdenv, buildPythonPackage, fetchFromGitHub
{ stdenv, buildPythonPackage, fetchFromGitHub, isPy27
, pandas, shapely, fiona, descartes, pyproj
, pytest, Rtree }:
buildPythonPackage rec {
pname = "geopandas";
version = "0.6.3";
version = "0.7.0";
disabled = isPy27;
src = fetchFromGitHub {
owner = "geopandas";
repo = "geopandas";
rev = "v${version}";
sha256 = "11mzb5spwa06h1zhn7z905wcwya2x5srghv82jp5zjka9zdhsycd";
sha256 = "0cfdvl4cvi0nim1qbmzf7vg0all272i8r0kj4xgdd0hr2j4jdg9p";
};
checkInputs = [ pytest Rtree ];