beanhub-import: 1.0.7 -> 1.2.0 (#388138)

Changed files
+9 -4
pkgs
development
python-modules
beanhub-import
+9 -4
pkgs/development/python-modules/beanhub-import/default.nix
···
beancount-black,
beancount-parser,
beanhub-extract,
+
hatchling,
jinja2,
-
poetry-core,
pydantic,
pytz,
pyyaml,
···
buildPythonPackage rec {
pname = "beanhub-import";
-
version = "1.0.7";
+
version = "1.2.0";
pyproject = true;
disabled = pythonOlder "3.9";
···
owner = "LaunchPlatform";
repo = "beanhub-import";
tag = version;
-
hash = "sha256-lafSOk+MS9MqB9KSxVR7S1HJJ6R6RZeCrFK8JGCZAIg=";
+
hash = "sha256-oExJ8BWJmJkJMGGIYp+Xtf0rzUcQKD8YKo51E+KbRN0=";
};
-
build-system = [ poetry-core ];
+
build-system = [ hatchling ];
+
+
pythonRelaxDeps = [
+
# pytz>=2023.1,<2025, but we have 2025.1
+
"pytz"
+
];
dependencies = [
beancount-black