Merge pull request #118355 from dotlambda/fava-pytestCheckHook

fava: modernize expression
This commit is contained in:
Sandro 2021-04-03 01:33:08 +02:00 committed by GitHub
commit 64cf4e0c98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,21 +1,17 @@
{ lib, python3, beancount }: { lib, python3 }:
let python3.pkgs.buildPythonApplication rec {
inherit (python3.pkgs) buildPythonApplication fetchPypi;
in
buildPythonApplication rec {
pname = "fava"; pname = "fava";
version = "1.18"; version = "1.18";
src = fetchPypi { src = python3.pkgs.fetchPypi {
inherit pname version; inherit pname version;
sha256 = "21336b695708497e6f00cab77135b174c51feb2713b657e0e208282960885bf5"; sha256 = "21336b695708497e6f00cab77135b174c51feb2713b657e0e208282960885bf5";
}; };
checkInputs = [ python3.pkgs.pytest ];
nativeBuildInputs = with python3.pkgs; [ setuptools-scm ]; nativeBuildInputs = with python3.pkgs; [ setuptools-scm ];
propagatedBuildInputs = with python3.pkgs;
[ propagatedBuildInputs = with python3.pkgs; [
Babel Babel
cheroot cheroot
flaskbabel flaskbabel
@ -30,12 +26,19 @@ buildPythonApplication rec {
jaraco_functools jaraco_functools
]; ];
# CLI test expects fava on $PATH. Not sure why static_url fails. checkInputs = with python3.pkgs; [
# the entry_slices and render_entries requires other files to pass pytestCheckHook
checkPhase = '' ];
py.test tests -k 'not cli and not static_url and not entry_slice and not render_entries'
preCheck = ''
export HOME=$TEMPDIR
''; '';
disabledTests = [
# runs fava in debug mode, which tries to interpret bash wrapper as Python
"test_cli"
];
meta = { meta = {
homepage = "https://beancount.github.io/fava"; homepage = "https://beancount.github.io/fava";
description = "Web interface for beancount"; description = "Web interface for beancount";