keepnote: use python2

This commit is contained in:
Frederik Rietdijk 2016-11-09 16:40:46 +01:00
parent 3829e93942
commit 659c5c4c62

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, pythonPackages }:
{ stdenv, fetchurl, python2Packages }:
pythonPackages.buildPythonApplication {
python2Packages.buildPythonApplication {
name = "keepnote-0.7.8";
namePrefix = "";
@ -9,7 +9,7 @@ pythonPackages.buildPythonApplication {
sha256 = "0nhkkv1n0lqf3zn17pxg5cgryv1wwlj4hfmhixwd76rcy8gs45dh";
};
propagatedBuildInputs = with pythonPackages; [ pyGtkGlade ];
propagatedBuildInputs = with python2Packages; [ pyGtkGlade ];
# Testing fails.
doCheck = false;