python3Packages.beanhub-extract: 0.1.5 -> 0.1.6

https://github.com/LaunchPlatform/beanhub-extract/releases/tag/0.1.6

This commit was automatically generated using update-python-libraries.
This commit is contained in:
Martin Weinelt
2025-08-05 04:35:46 +02:00
parent 8c3b2c98e8
commit 8bcc8ca224

View File

@@ -3,16 +3,16 @@
fetchFromGitHub, fetchFromGitHub,
buildPythonPackage, buildPythonPackage,
pythonOlder, pythonOlder,
hatchling,
pytestCheckHook, pytestCheckHook,
iso8601, iso8601,
poetry-core,
pytest-lazy-fixture, pytest-lazy-fixture,
pytz, pytz,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "beanhub-extract"; pname = "beanhub-extract";
version = "0.1.5"; version = "0.1.6";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.9"; disabled = pythonOlder "3.9";
@@ -21,10 +21,10 @@ buildPythonPackage rec {
owner = "LaunchPlatform"; owner = "LaunchPlatform";
repo = "beanhub-extract"; repo = "beanhub-extract";
tag = version; tag = version;
hash = "sha256-L3TM3scBJGlOXXxeJAkiqMkpBmhJZB6b+IQT2DGIfO0="; hash = "sha256-N4LCMZRPbIzVUPDCW3mAVw6WwpuvxiJmMIoyk8VwXS0=";
}; };
build-system = [ poetry-core ]; build-system = [ hatchling ];
pythonRelaxDeps = [ "pytz" ]; pythonRelaxDeps = [ "pytz" ];
@@ -43,7 +43,7 @@ buildPythonPackage rec {
meta = { meta = {
description = "Simple library for extracting all kind of bank account transaction export files, mostly for beanhub-import to ingest and generate transactions"; description = "Simple library for extracting all kind of bank account transaction export files, mostly for beanhub-import to ingest and generate transactions";
homepage = "https://github.com/LaunchPlatform/beanhub-extract/"; homepage = "https://github.com/LaunchPlatform/beanhub-extract/";
changelog = "https://github.com/LaunchPlatform/beanhub-extract/releases/tag/${version}"; changelog = "https://github.com/LaunchPlatform/beanhub-extract/releases/tag/${src.tag}";
license = with lib.licenses; [ mit ]; license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fangpen ]; maintainers = with lib.maintainers; [ fangpen ];
}; };