794cc8e724
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/python3.7-fints/versions (cherry picked from commit d7a07e065f0257f1197b79235f0a6ef02c696a86)
26 lines
673 B
Nix
26 lines
673 B
Nix
{ 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 ];
|
|
};
|
|
}
|