nixpkgs/pkgs/development/python-modules/fints/default.nix

26 lines
685 B
Nix
Raw Normal View History

2018-12-20 18:46:04 +01:00
{ stdenv, buildPythonPackage, fetchPypi,
requests, mt-940, sepaxml, bleach, isPy3k }:
buildPythonPackage rec {
2019-02-14 08:37:15 +01:00
version = "2.0.1";
2018-12-20 18:46:04 +01:00
pname = "fints";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
2019-02-14 08:37:15 +01:00
sha256 = "27427b5e6536b592f964c464a8f0c75c5725176604e9d0f208772a45918d9b78";
2018-12-20 18:46:04 +01: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 ];
};
}