2021-01-25 08:26:54 +00:00
|
|
|
{ lib
|
2018-06-22 10:34:15 +01:00
|
|
|
, python3
|
2017-08-30 15:04:29 +01:00
|
|
|
}:
|
|
|
|
|
2018-06-22 10:34:15 +01:00
|
|
|
with python3.pkgs;
|
2017-08-30 15:04:29 +01:00
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "jrnl";
|
|
|
|
version = "1.9.8";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "d254c9c8f24dcf985b98a1d5311337c7f416e6305107eec34c567f58c95b06f4";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2019-01-22 11:30:45 +00:00
|
|
|
pytz six tzlocal keyring dateutil
|
2017-08-30 15:04:29 +01:00
|
|
|
parsedatetime pycrypto
|
|
|
|
];
|
|
|
|
|
|
|
|
# No tests in archive
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://maebert.github.io/jrnl/";
|
2017-08-30 15:04:29 +01:00
|
|
|
description = "A simple command line journal application that stores your journal in a plain text file";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ zalakain ];
|
|
|
|
};
|
|
|
|
}
|