* keepnote: depend on pythonPackages.sqlite3 rather than pythonFull.

svn path=/nixpkgs/branches/modular-python/; revision=26582
This commit is contained in:
Eelco Dolstra
2011-03-28 16:48:31 +00:00
parent 0a7b7374ac
commit 7b3bda471d
2 changed files with 3 additions and 14 deletions
@@ -1,14 +1,15 @@
{stdenv, fetchurl, buildPythonPackage, pygtk}:
{ stdenv, fetchurl, buildPythonPackage, pythonPackages, pygtk }:
buildPythonPackage {
name = "keepnote-0.6.5";
namePrefix = "";
src = fetchurl {
url = http://rasm.ods.org/keepnote/download/keepnote-0.6.5.tar.gz;
sha256 = "0kipcy90r50z4m9p8pyy9wi4dknsiwdrgy974xgakris2rh4lafw";
};
propagatedBuildInputs = [ pygtk ];
propagatedBuildInputs = [ pythonPackages.sqlite3 pygtk ];
# Testing fails.
doCheck = false;