Files
2026-07-15 14:04:39 -04:00

43 lines
868 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
beancount-parser,
click,
poetry-core,
pytestCheckHook,
}:
buildPythonPackage (finalAttrs: {
pname = "beancount-black";
version = "1.0.5";
pyproject = true;
src = fetchFromGitHub {
owner = "LaunchPlatform";
repo = "beancount-black";
tag = finalAttrs.version;
hash = "sha256-vo11mlgDhyc8YFnULJ4AFrANWmGpAMNX5jJ6QaUNqk0=";
};
buildInputs = [ poetry-core ];
propagatedBuildInputs = [
beancount-parser
click
];
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "beancount_black" ];
meta = {
description = "Opinioned code formatter for Beancount";
mainProgram = "bean-black";
homepage = "https://github.com/LaunchPlatform/beancount-black/";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ambroisie ];
};
})