2
0
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 03:34:58 +00:00
nixpkgs/pkgs/applications/misc/jrnl/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
1.4 KiB
Nix
Raw Normal View History

{ lib
2021-02-11 15:48:36 +00:00
, fetchFromGitHub
2021-10-22 17:27:15 +00:00
, python3
}:
2021-10-22 17:27:15 +00:00
python3.pkgs.buildPythonApplication rec {
pname = "jrnl";
version = "3.3";
2021-02-11 15:48:36 +00:00
format = "pyproject";
2021-02-11 15:48:36 +00:00
src = fetchFromGitHub {
owner = "jrnl-org";
repo = pname;
rev = "refs/tags/v${version}";
sha256 = "sha256-e2w0E8t6s0OWx2ROme2GdyzWhmCc6hnMfSdLTZqt3bg=";
};
2021-10-22 17:27:15 +00:00
nativeBuildInputs = with python3.pkgs; [
poetry-core
];
2021-02-11 15:48:36 +00:00
2021-10-22 17:27:15 +00:00
propagatedBuildInputs = with python3.pkgs; [
2021-02-11 15:48:36 +00:00
ansiwrap
asteval
colorama
cryptography
keyring
parsedatetime
python-dateutil
pytz
pyxdg
pyyaml
tzlocal
ruamel-yaml
rich
];
nativeCheckInputs = with python3.pkgs; [
2021-10-22 17:27:15 +00:00
pytest-bdd
pytest-xdist
2021-10-22 17:27:15 +00:00
pytestCheckHook
toml
];
# Upstream expects a old pytest-bdd version
# Once it changes we should update here too
# https://github.com/jrnl-org/jrnl/blob/develop/poetry.lock#L732
disabledTests = [
"bdd"
];
2022-02-19 10:16:39 +00:00
postPatch = ''
substituteInPlace pyproject.toml \
--replace 'rich = "^12.2.0"' 'rich = ">=12.2.0, <14.0.0"'
2022-02-19 10:16:39 +00:00
'';
2021-10-22 17:27:15 +00:00
preCheck = ''
export HOME=$(mktemp -d);
'';
pythonImportsCheck = [
"jrnl"
];
meta = with lib; {
2021-10-22 17:27:15 +00:00
description = "Simple command line journal application that stores your journal in a plain text file";
homepage = "https://jrnl.sh/";
2021-02-11 15:48:36 +00:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ bryanasdev000 zalakain ];
};
}