beanhub-extract: init at 0.0.7

This commit is contained in:
Fang-Pen Lin
2024-05-14 00:48:02 +00:00
parent 16589d357d
commit b29fd82b11
2 changed files with 49 additions and 0 deletions
@@ -0,0 +1,47 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, pythonOlder
, pytestCheckHook
, poetry-core
, pytz
}:
buildPythonPackage rec {
pname = "beanhub-extract";
version = "0.0.7";
pyproject = true;
disabled = pythonOlder "3.9";
src = fetchFromGitHub {
owner = "LaunchPlatform";
repo = "beanhub-extract";
rev = "refs/tags/${version}";
hash = "sha256-Wt8ZCyCaERNXEd0/Q89QWUW/wGFSHAP2RZLhnv5xkgY=";
};
build-system = [
poetry-core
];
dependencies = [
pytz
];
nativeCheckInputs = [
pytestCheckHook
];
pythonImportsCheck = [
"beanhub_extract"
];
meta = {
description = "The 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/${version}";
license = with lib.licenses; [ mit ];
maintainers = with lib.maintainers; [ fangpen ];
};
}
+2
View File
@@ -1463,6 +1463,8 @@ self: super: with self; {
beancount-docverif = callPackage ../development/python-modules/beancount-docverif { };
beanhub-extract = callPackage ../development/python-modules/beanhub-extract { };
beanstalkc = callPackage ../development/python-modules/beanstalkc { };
beartype = callPackage ../development/python-modules/beartype { };