Files
nixpkgs/pkgs/development/python-modules/beanhub-extract/default.nix
Martin Weinelt 8bcc8ca224 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.
2025-08-09 18:58:15 +02:00

51 lines
1.1 KiB
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
pythonOlder,
hatchling,
pytestCheckHook,
iso8601,
pytest-lazy-fixture,
pytz,
}:
buildPythonPackage rec {
pname = "beanhub-extract";
version = "0.1.6";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "LaunchPlatform";
repo = "beanhub-extract";
tag = version;
hash = "sha256-N4LCMZRPbIzVUPDCW3mAVw6WwpuvxiJmMIoyk8VwXS0=";
};
build-system = [ hatchling ];
pythonRelaxDeps = [ "pytz" ];
dependencies = [
iso8601
pytz
];
nativeCheckInputs = [
pytest-lazy-fixture
pytestCheckHook
];
pythonImportsCheck = [ "beanhub_extract" ];
meta = {
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/";
changelog = "https://github.com/LaunchPlatform/beanhub-extract/releases/tag/${src.tag}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fangpen ];
};
}