Commit 26b22f45 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python313Packages.beanhub-cli: add beanhub-inbox

parent 7d00bc8d
Loading
Loading
Loading
Loading
+9 −8
Original line number Diff line number Diff line
@@ -3,17 +3,17 @@
  fetchFromGitHub,
  buildPythonPackage,
  pythonOlder,
  pytestCheckHook,
  hatchling,

  # dependencies
  beancount-black,
  beancount-parser,
  beanhub-forms,
  beanhub-import,
  beanhub-inbox,
  click,
  fastapi,
  jinja2,
  poetry-core,
  pydantic-settings,
  pydantic,
  pyyaml,
@@ -31,10 +31,11 @@
  tomli,

  # tests
  pytest,
  pytest-asyncio,
  pytest-factoryboy,
  pytest-httpx,
  pytest-mock,
  pytestCheckHook,
}:

buildPythonPackage rec {
@@ -51,17 +52,16 @@ buildPythonPackage rec {
    hash = "sha256-hreVGsptCGW6L3rj6Ec8+lefZWpQ4tZtUEJI+NxTO7w=";
  };

  pythonRelaxDeps = [
    "rich"
  ];
  pythonRelaxDeps = [ "rich" ];

  build-system = [ poetry-core ];
  build-system = [ hatchling ];

  dependencies = [
    beancount-black
    beancount-parser
    beanhub-forms
    beanhub-import
    beanhub-inbox
    click
    fastapi
    jinja2
@@ -95,6 +95,7 @@ buildPythonPackage rec {

  nativeCheckInputs = [
    pytest-asyncio
    pytest-factoryboy
    pytest-httpx
    pytest-mock
    pytestCheckHook
@@ -105,10 +106,10 @@ buildPythonPackage rec {

  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/${src.tag}";
    license = with lib.licenses; [ mit ];
    maintainers = with lib.maintainers; [ fangpen ];
    mainProgram = "bh";
  };
}