python3Packages.fava-dashboards: init at 1.2.0 (#461703)
This commit is contained in:
@@ -0,0 +1,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 ];
|
||||
};
|
||||
}
|
||||
@@ -5216,6 +5216,8 @@ self: super: with self; {
|
||||
|
||||
fava = callPackage ../development/python-modules/fava { };
|
||||
|
||||
fava-dashboards = callPackage ../development/python-modules/fava-dashboards { };
|
||||
|
||||
favicon = callPackage ../development/python-modules/favicon { };
|
||||
|
||||
fe25519 = callPackage ../development/python-modules/fe25519 { };
|
||||
|
||||
Reference in New Issue
Block a user