blob: ecd12bedf238f8b3209a106a30f04dc017307063 (
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
48
49
50
51
52
53
54
|
{
lib,
buildPythonPackage,
setuptools,
fetchFromGitHub,
bleach,
mt-940,
requests,
sepaxml,
pytestCheckHook,
pytest-mock,
}:
buildPythonPackage rec {
version = "4.2.4";
pname = "fints";
pyproject = true;
src = fetchFromGitHub {
owner = "raphaelm";
repo = "python-fints";
tag = "v${version}";
hash = "sha256-la5vpWBoZ7hZsAyjjCqHpFfOykDVosI/S9amox1dmzY=";
};
pythonRemoveDeps = [ "enum-tools" ];
build-system = [ setuptools ];
dependencies = [
bleach
mt-940
requests
sepaxml
];
__darwinAllowLocalNetworking = true;
pythonImportsCheck = [ "fints" ];
nativeCheckInputs = [
pytestCheckHook
pytest-mock
];
meta = {
homepage = "https://github.com/raphaelm/python-fints/";
description = "Pure-python FinTS (formerly known as HBCI) implementation";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [
dotlambda
];
};
}
|