forked from mirrors/nixpkgs
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
72 lines
1.4 KiB
Nix
72 lines
1.4 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "jrnl";
|
|
version = "3.3";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jrnl-org";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "sha256-e2w0E8t6s0OWx2ROme2GdyzWhmCc6hnMfSdLTZqt3bg=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
ansiwrap
|
|
asteval
|
|
colorama
|
|
cryptography
|
|
keyring
|
|
parsedatetime
|
|
python-dateutil
|
|
pytz
|
|
pyxdg
|
|
pyyaml
|
|
tzlocal
|
|
ruamel-yaml
|
|
rich
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytest-bdd
|
|
pytest-xdist
|
|
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"
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'rich = "^12.2.0"' 'rich = ">=12.2.0, <14.0.0"'
|
|
'';
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d);
|
|
'';
|
|
|
|
pythonImportsCheck = [
|
|
"jrnl"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Simple command line journal application that stores your journal in a plain text file";
|
|
homepage = "https://jrnl.sh/";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ bryanasdev000 zalakain ];
|
|
};
|
|
}
|