python3Packages.autobean: init at 0.2.3

This commit is contained in:
Bruno BELANYI
2026-07-13 14:53:55 +00:00
parent b5eb9fee89
commit 9ffa676bee
2 changed files with 55 additions and 0 deletions
@@ -0,0 +1,53 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
beancount,
nix-update-script,
pdm-pep517,
pytest-cov-stub,
pytestCheckHook,
python-dateutil,
pyyaml,
requests,
}:
buildPythonPackage (finalAttrs: {
pname = "autobean";
version = "0.2.3";
pyproject = true;
src = fetchFromGitHub {
owner = "SEIAROTg";
repo = "autobean";
tag = "v${finalAttrs.version}";
hash = "sha256-JTxrDER8iSPu9Rp/7Al7KVibWOVBXdHnq6fyGVMedas=";
};
build-system = [
pdm-pep517
];
dependencies = [
beancount
python-dateutil
pyyaml
requests
];
nativeCheckInputs = [
pytest-cov-stub
pytestCheckHook
];
pythonImportsCheck = [ "autobean" ];
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/SEIAROTg/autobean";
description = "Collection of plugins and scripts that help automating bookkeeping with beancount";
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ ambroisie ];
};
})
+2
View File
@@ -1597,6 +1597,8 @@ self: super: with self; {
autobahn = callPackage ../development/python-modules/autobahn { };
autobean = callPackage ../development/python-modules/autobean { };
autocommand = callPackage ../development/python-modules/autocommand { };
autodocsumm = callPackage ../development/python-modules/autodocsumm { };