mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 19:33:03 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{ lib, python3, fetchPypi }:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "fava";
|
|
version = "1.27.3";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-GsnXZaazEiOhyjbIinHRD1fdoqlAp3d5csrmtydxmGM=";
|
|
};
|
|
|
|
nativeBuildInputs = with python3.pkgs; [ setuptools-scm ];
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
babel
|
|
beancount
|
|
cheroot
|
|
click
|
|
flask
|
|
flask-babel
|
|
jaraco-functools
|
|
jinja2
|
|
markdown2
|
|
ply
|
|
simplejson
|
|
werkzeug
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytestCheckHook
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace pyproject.toml \
|
|
--replace 'setuptools_scm>=8.0' 'setuptools_scm'
|
|
'';
|
|
|
|
preCheck = ''
|
|
export HOME=$TEMPDIR
|
|
'';
|
|
|
|
disabledTests = [
|
|
# runs fava in debug mode, which tries to interpret bash wrapper as Python
|
|
"test_cli"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Web interface for beancount";
|
|
mainProgram = "fava";
|
|
homepage = "https://beancount.github.io/fava";
|
|
changelog = "https://beancount.github.io/fava/changelog.html";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bhipple ];
|
|
};
|
|
}
|