jrnl: 2.8 -> 2.8.3

This commit is contained in:
Fabian Affolter 2021-10-22 19:27:15 +02:00
parent 1cab3e231b
commit f9e0bae485
2 changed files with 34 additions and 24 deletions

View file

@ -1,36 +1,26 @@
{ lib { lib
, ansiwrap
, asteval
, buildPythonApplication
, colorama
, cryptography
, fetchFromGitHub , fetchFromGitHub
, keyring , fetchpatch
, parsedatetime , python3
, poetry
, pytestCheckHook
, python-dateutil
, pytz
, pyxdg
, pyyaml
, tzlocal
}: }:
buildPythonApplication rec { python3.pkgs.buildPythonApplication rec {
pname = "jrnl"; pname = "jrnl";
version = "2.8"; version = "2.8.3";
format = "pyproject"; format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "jrnl-org"; owner = "jrnl-org";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1zpsvrjhami9y7204yjbdzi04bkkz6i3apda9fh3hbq83y6wzprz"; sha256 = "sha256-+kPr7ndY6u1HMw6m0UZJ5jxVIPNjlTfQt7OYEdZkHBE=";
}; };
nativeBuildInputs = [ poetry ]; nativeBuildInputs = with python3.pkgs; [
poetry-core
];
propagatedBuildInputs = [ propagatedBuildInputs = with python3.pkgs; [
ansiwrap ansiwrap
asteval asteval
colorama colorama
@ -44,12 +34,32 @@ buildPythonApplication rec {
tzlocal tzlocal
]; ];
checkInputs = [ pytestCheckHook ]; checkInputs = with python3.pkgs; [
pythonImportsCheck = [ "jrnl" ]; 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; { meta = with lib; {
homepage = "http://maebert.github.io/jrnl/"; description = "Simple command line journal application that stores your journal in a plain text file";
description = "A simple command line journal application that stores your journal in a plain text file"; homepage = "https://jrnl.sh/";
license = licenses.gpl3Only; license = licenses.gpl3Only;
maintainers = with maintainers; [ zalakain ]; maintainers = with maintainers; [ zalakain ];
}; };

View file

@ -6529,7 +6529,7 @@ with pkgs;
inherit (darwin.apple_sdk.frameworks) SystemConfiguration; inherit (darwin.apple_sdk.frameworks) SystemConfiguration;
}; };
jrnl = python3Packages.callPackage ../applications/misc/jrnl { }; jrnl = callPackage ../applications/misc/jrnl { };
jsawk = callPackage ../tools/text/jsawk { }; jsawk = callPackage ../tools/text/jsawk { };