blob: 9b1424be243edc89bf7b48e5762aef43aff72e80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
stdenv,
beanquery,
fava,
hatch-vcs,
hatchling,
pyyaml,
}:
buildPythonPackage rec {
pname = "fava-dashboards";
version = "1.2.0";
pyproject = true;
src = fetchFromGitHub {
owner = "andreasgerstmayr";
repo = "fava-dashboards";
rev = "v${version}";
hash = "sha256-0524Mx93bJ4DKTb3gYps+C7dzhzuNd7YIvqeCtZz2f0=";
};
build-system = [
hatchling
hatch-vcs
];
dependencies = [
beanquery
fava
pyyaml
];
pythonImportsCheck = [ "fava_dashboards" ];
meta = {
description = "Custom Dashboards for Beancount in Fava";
homepage = "https://github.com/andreasgerstmayr/fava-dashboards";
changelog = "https://github.com/andreasgerstmayr/fava-dashboards/blob/main/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ambroisie ];
};
}
|