jrnl: use Python 3
This commit is contained in:
parent
49cb112d99
commit
080fbe90a5
@ -1,13 +1,12 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, python
|
, python3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with python.pkgs;
|
with python3.pkgs;
|
||||||
|
|
||||||
buildPythonApplication rec {
|
buildPythonApplication rec {
|
||||||
pname = "jrnl";
|
pname = "jrnl";
|
||||||
version = "1.9.8";
|
version = "1.9.8";
|
||||||
disabled = isPy3k;
|
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
@ -15,7 +14,7 @@ buildPythonApplication rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
pytz six tzlocal keyring argparse dateutil_1_5
|
pytz six tzlocal keyring argparse dateutil
|
||||||
parsedatetime pycrypto
|
parsedatetime pycrypto
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user