summary refs log tree commit diff
path: root/pkgs/development/python-modules/fints/default.nix
blob: 4d9d250815a9046c101a74b8c7de89bf53c0dad1 (plain) (blame)
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
{ stdenv, buildPythonPackage, fetchPypi,
  requests, mt-940, sepaxml, bleach, isPy3k }:

buildPythonPackage rec {
  version = "2.1.1";
  pname = "fints";
  disabled = !isPy3k;

  src = fetchPypi {
    inherit pname version;
    sha256 = "06p6p0xxw0n10hmf7z4k1l29fya0sja433s6lasjr1bal5asdhaq";
  };

  propagatedBuildInputs = [ requests mt-940 sepaxml bleach ];

  # no tests included in PyPI package
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = https://github.com/raphaelm/python-fints/;
    description = "Pure-python FinTS (formerly known as HBCI) implementation";
    license = licenses.lgpl3;
    maintainers = with maintainers; [ elohmeier ];
  };
}