keepnote: do not use top-level python packages

This commit is contained in:
Frederik Rietdijk
2016-09-25 23:53:57 +02:00
parent 9f8916e519
commit aa23f61120
2 changed files with 4 additions and 6 deletions
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, buildPythonApplication, pythonPackages, pygtk }:
{ stdenv, fetchurl, pythonPackages }:
buildPythonApplication {
pythonPackages.buildPythonApplication {
name = "keepnote-0.7.8";
namePrefix = "";
@@ -9,7 +9,7 @@ buildPythonApplication {
sha256 = "0nhkkv1n0lqf3zn17pxg5cgryv1wwlj4hfmhixwd76rcy8gs45dh";
};
propagatedBuildInputs = [ pythonPackages.sqlite3 pygtk ];
propagatedBuildInputs = with pythonPackages; [ sqlite3 pyGtkGlade ];
# Testing fails.
doCheck = false;