3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/office/fava/default.nix

45 lines
1 KiB
Nix
Raw Normal View History

2017-11-03 22:49:58 +00:00
{ stdenv, python3, beancount }:
2016-05-28 17:34:43 +01:00
2017-11-03 22:49:58 +00:00
let
inherit (python3.pkgs) buildPythonApplication fetchPypi;
in
buildPythonApplication rec {
pname = "fava";
2020-06-23 01:47:11 +01:00
version = "1.15";
2016-05-28 17:34:43 +01:00
2017-11-03 22:49:58 +00:00
src = fetchPypi {
inherit pname version;
2020-06-23 01:47:11 +01:00
sha256 = "037fhimfjiqay28wg7hd5sm7r0935ynw9d905iszn965ihr1qsgz";
2016-05-28 17:34:43 +01:00
};
2019-09-05 20:04:31 +01:00
checkInputs = [ python3.pkgs.pytest ];
2017-11-03 22:49:58 +00:00
propagatedBuildInputs = with python3.pkgs;
2020-06-23 01:47:11 +01:00
[
2019-01-14 12:16:24 +00:00
Babel
cheroot
flaskbabel
flask
jinja2
beancount
click
markdown2
ply
simplejson
2019-12-08 07:45:59 +00:00
werkzeug
2019-11-12 02:41:44 +00:00
jaraco_functools
2019-01-14 12:16:24 +00:00
];
2016-05-28 17:34:43 +01:00
2019-09-05 20:04:31 +01:00
# CLI test expects fava on $PATH. Not sure why static_url fails.
2020-06-23 01:47:11 +01:00
# the entry_slices and render_entries requires other files to pass
2019-09-05 20:04:31 +01:00
checkPhase = ''
2020-06-23 01:47:11 +01:00
py.test tests -k 'not cli and not static_url and not entry_slice and not render_entries'
2019-09-05 20:04:31 +01:00
'';
2016-05-28 17:34:43 +01:00
meta = {
homepage = "https://beancount.github.io/fava";
2016-05-28 17:34:43 +01:00
description = "Web interface for beancount";
license = stdenv.lib.licenses.mit;
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
2016-05-28 17:34:43 +01:00
};
}