nixpkgs/pkgs/applications/misc/jrnl/default.nix

72 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
2021-02-11 18:48:36 +03:00
, fetchFromGitHub
2021-10-22 20:27:15 +03:00
, fetchpatch
, python3
}:
2021-10-22 20:27:15 +03:00
python3.pkgs.buildPythonApplication rec {
pname = "jrnl";
2021-10-22 20:27:15 +03:00
version = "2.8.3";
2021-02-11 18:48:36 +03:00
format = "pyproject";
2021-02-11 18:48:36 +03:00
src = fetchFromGitHub {
owner = "jrnl-org";
repo = pname;
rev = "v${version}";
2021-10-22 20:27:15 +03:00
sha256 = "sha256-+kPr7ndY6u1HMw6m0UZJ5jxVIPNjlTfQt7OYEdZkHBE=";
};
2021-11-19 09:08:42 +03:00
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'tzlocal = ">2.0, <3.0"' 'tzlocal = ">2.0, !=3.0"'
'';
2021-10-22 20:27:15 +03:00
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
2021-02-11 18:48:36 +03:00
2021-10-22 20:27:15 +03:00
propagatedBuildInputs = with python3.pkgs; [
2021-02-11 18:48:36 +03:00
ansiwrap
asteval
colorama
cryptography
keyring
parsedatetime
python-dateutil
pytz
pyxdg
pyyaml
tzlocal
];
2021-10-22 20:27:15 +03:00
checkInputs = with python3.pkgs; [
pytest-bdd
pytestCheckHook
toml
];
patches = [
# Switch to poetry-core, https://github.com/jrnl-org/jrnl/pull/1359
(fetchpatch {
name = "switch-to-poetry-core.patch";
url = "https://github.com/jrnl-org/jrnl/commit/a55a240eff7a167af5974a03e9de6f7b818eafd9.patch";
sha256 = "1w3gb4vasvh51nggf89fsqsm4862m0g7hr36qz22n4vg9dds175m";
})
];
preCheck = ''
export HOME=$(mktemp -d);
'';
pythonImportsCheck = [
"jrnl"
];
meta = with lib; {
2021-10-22 20:27:15 +03:00
description = "Simple command line journal application that stores your journal in a plain text file";
homepage = "https://jrnl.sh/";
2021-02-11 18:48:36 +03:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ zalakain ];
};
}