{ stdenv, buildPythonPackage, fetchPypi, six, cligj, munch, click-plugins, enum34, pytest, nose, gdal }: buildPythonPackage rec { pname = "Fiona"; version = "1.8.0"; src = fetchPypi { inherit pname version; sha256 = "20141a9ece06daa7bb4333fba640c2fe39a49f8aca5492d1da8595d41e91844a"; }; CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11"; buildInputs = [ gdal ]; propagatedBuildInputs = [ six cligj munch click-plugins enum34 ]; checkInputs = [ pytest nose ]; doCheck = false; meta = with stdenv.lib; { description = "OGR's neat, nimble, no-nonsense API for Python"; homepage = http://toblerity.org/fiona/; license = licenses.bsd3; maintainers = with maintainers; [ knedlsepp ]; }; }