Explicitly add sqlite to calibre.buildInputs
The better way would be adding sqlite to pythonPackages.sqlite3.propagatedBuildInputs but I don't want to touch this code. svn path=/nixpkgs/trunk/; revision=31197
This commit is contained in:
parent
6639c58398
commit
097b7635af
1 changed files with 3 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
{ stdenv, fetchurl, python, pyqt4, sip, popplerQt4, pkgconfig, libpng
|
||||
, imagemagick, libjpeg, fontconfig, podofo, qt4, icu
|
||||
, imagemagick, libjpeg, fontconfig, podofo, qt4, icu, sqlite
|
||||
, pil, makeWrapper, unrar, chmlib, pythonPackages, xz
|
||||
}:
|
||||
|
||||
|
@ -19,7 +19,8 @@ stdenv.mkDerivation rec {
|
|||
[ python pyqt4 sip popplerQt4 libpng imagemagick libjpeg
|
||||
fontconfig podofo qt4 pil chmlib icu
|
||||
pythonPackages.mechanize pythonPackages.lxml pythonPackages.dateutil
|
||||
pythonPackages.cssutils pythonPackages.beautifulsoap pythonPackages.sqlite3
|
||||
pythonPackages.cssutils pythonPackages.beautifulsoap
|
||||
pythonPackages.sqlite3 sqlite
|
||||
];
|
||||
|
||||
installPhase = ''
|
||||
|
|
Loading…
Reference in a new issue