Merge pull request #52578 from elohmeier/fints

add sepaxml & fints
This commit is contained in:
Robert Schütz 2018-12-22 15:55:22 +01:00 committed by GitHub
commit 84ad62efc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 56 additions and 0 deletions

View File

@ -1329,6 +1329,11 @@
github = "ellis";
name = "Ellis Whitehead";
};
elohmeier = {
email = "elo-nixos@nerdworks.de";
github = "elohmeier";
name = "Enno Lohmeier";
};
elseym = {
email = "elseym@me.com";
github = "elseym";

View File

@ -0,0 +1,25 @@
{ stdenv, buildPythonPackage, fetchPypi,
requests, mt-940, sepaxml, bleach, isPy3k }:
buildPythonPackage rec {
version = "2.0.0";
pname = "fints";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "1jja83h0ld55djiphcxdz64z5qp3w94204bfbgg65v5ybw0vpqq1";
};
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 ];
};
}

View File

@ -0,0 +1,22 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
version = "2.0.0";
pname = "sepaxml";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "0jhj8fa0lbyaw15q485kyyli9qgrmqr47a6z6pgqm40kwmjghiyc";
};
# no tests included in PyPI package
doCheck = false;
meta = with stdenv.lib; {
homepage = https://github.com/raphaelm/python-sepaxml/;
description = "SEPA Direct Debit XML generation in python";
license = licenses.mit;
maintainers = with maintainers; [ elohmeier ];
};
}

View File

@ -358,6 +358,8 @@ in {
filterpy = callPackage ../development/python-modules/filterpy { };
fints = callPackage ../development/python-modules/fints { };
fire = callPackage ../development/python-modules/fire { };
fdint = callPackage ../development/python-modules/fdint { };
@ -702,6 +704,8 @@ in {
selectors2 = callPackage ../development/python-modules/selectors2 { };
sepaxml = callPackage ../development/python-modules/sepaxml { };
serversyncstorage = callPackage ../development/python-modules/serversyncstorage {};
shellingham = callPackage ../development/python-modules/shellingham {};