blob: 4d7e96a28e0ee292980c19cea7fea2f1978f0efe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{
lib,
fetchFromGitHub,
buildPythonPackage,
hatchling,
pytestCheckHook,
iso8601,
pytest-lazy-fixture,
pytz,
}:
buildPythonPackage rec {
pname = "beanhub-extract";
version = "0.1.7";
pyproject = true;
src = fetchFromGitHub {
owner = "LaunchPlatform";
repo = "beanhub-extract";
tag = version;
hash = "sha256-CpR4NNXr6Ag8dCI+NB+4hvAtFBjKJTNkXMps2E+6L7Q=";
};
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 ];
};
}
|