Skip to content

Commit

Permalink
qgis: use python2
Browse files Browse the repository at this point in the history
  • Loading branch information
FRidh committed Nov 8, 2016
1 parent dd52569 commit 88a03eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/gis/qgis/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl
, qwt, fcgi, pythonPackages, libspatialindex, libspatialite, qscintilla, postgresql, makeWrapper
, qwt, fcgi, python2Packages, libspatialindex, libspatialite, qscintilla, postgresql, makeWrapper
, qjson, qca2, txt2tags, openssl
, withGrass ? false, grass
}:
Expand All @@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
buildInputs = [ gdal qt4 flex openssl bison proj geos xlibsWrapper sqlite gsl qwt qscintilla
fcgi libspatialindex libspatialite postgresql qjson qca2 txt2tags ] ++
(stdenv.lib.optional withGrass grass) ++
(with pythonPackages; [ numpy psycopg2 requests2 pythonPackages.qscintilla sip ]);
(with python2Packages; [ numpy psycopg2 requests2 python2Packages.qscintilla sip ]);

nativeBuildInputs = [ cmake makeWrapper ];

Expand Down

0 comments on commit 88a03eb

Please sign in to comment.