2018-12-20 17:46:04 +00:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi,
|
|
|
|
requests, mt-940, sepaxml, bleach, isPy3k }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2019-04-02 13:28:17 +01:00
|
|
|
version = "2.1.1";
|
2018-12-20 17:46:04 +00:00
|
|
|
pname = "fints";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-04-02 13:28:17 +01:00
|
|
|
sha256 = "06p6p0xxw0n10hmf7z4k1l29fya0sja433s6lasjr1bal5asdhaq";
|
2018-12-20 17:46:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|