nixpkgs/pkgs/development/python-modules/beanhub-cli/default.nix
2024-10-07 02:40:15 +00:00

76 lines
1.3 KiB
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
pythonOlder,
pytestCheckHook,
beancount-black,
beancount-parser,
beanhub-forms,
beanhub-import,
click,
fastapi,
httpx,
jinja2,
poetry-core,
pydantic,
pydantic-core,
pydantic-settings,
pytz,
pyyaml,
rich,
starlette-wtf,
uvicorn,
}:
buildPythonPackage rec {
pname = "beanhub-cli";
version = "1.4.1";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchFromGitHub {
owner = "LaunchPlatform";
repo = "beanhub-cli";
rev = "refs/tags/${version}";
hash = "sha256-ZPRQLdNDp/LOXmxU9H6fh9raPPiDsTiEW3j8ncgt8sY=";
};
build-system = [ poetry-core ];
dependencies = [
beancount-black
beancount-parser
beanhub-forms
beanhub-import
click
fastapi
jinja2
pydantic
pydantic-core
pydantic-settings
pytz
pyyaml
rich
starlette-wtf
uvicorn
];
nativeCheckInputs = [
pytestCheckHook
httpx
];
pythonImportsCheck = [ "beanhub_cli" ];
meta = {
description = "Command line tools for BeanHub or Beancount users";
mainProgram = "bh";
homepage = "https://github.com/LaunchPlatform/beanhub-cli/";
changelog = "https://github.com/LaunchPlatform/beanhub-cli/releases/tag/${version}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fangpen ];
};
}