{ stdenv, buildPythonPackage, fetchFromGitHub , pandas, shapely, fiona, descartes, pyproj , pytest, Rtree }: buildPythonPackage rec { pname = "geopandas"; version = "0.6.3"; src = fetchFromGitHub { owner = "geopandas"; repo = "geopandas"; rev = "v${version}"; sha256 = "11mzb5spwa06h1zhn7z905wcwya2x5srghv82jp5zjka9zdhsycd"; }; checkInputs = [ pytest Rtree ]; checkPhase = '' py.test geopandas -m "not web" ''; propagatedBuildInputs = [ pandas shapely fiona descartes pyproj ]; meta = with stdenv.lib; { description = "Python geospatial data analysis framework"; homepage = "http://geopandas.org"; license = licenses.bsd3; maintainers = with maintainers; [ knedlsepp ]; }; }