jrnl: use Python 3

This commit is contained in:
Robert Schütz 2018-06-22 11:34:15 +02:00 committed by Frederik Rietdijk
parent 49cb112d99
commit 080fbe90a5

View File

@ -1,13 +1,12 @@
{ stdenv
, python
, python3
}:
with python.pkgs;
with python3.pkgs;
buildPythonApplication rec {
pname = "jrnl";
version = "1.9.8";
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
@ -15,7 +14,7 @@ buildPythonApplication rec {
};
propagatedBuildInputs = [
pytz six tzlocal keyring argparse dateutil_1_5
pytz six tzlocal keyring argparse dateutil
parsedatetime pycrypto
];