python310Packages.fints: 3.1.0 -> 4.0.0

Diff: https://github.com/raphaelm/python-fints/compare/v3.1.0...v4.0.0
This commit is contained in:
Robert Schütz 2023-04-22 15:57:30 -07:00 committed by Robert Schütz
parent af10ec1c5b
commit 359c7a11bc

View file

@ -1,4 +1,7 @@
{ lib, buildPythonPackage, fetchFromGitHub, isPy27
{ lib
, buildPythonPackage
, pythonOlder
, fetchFromGitHub
, bleach
, mt-940
, requests
@ -8,15 +11,17 @@
}:
buildPythonPackage rec {
version = "3.1.0";
version = "4.0.0";
pname = "fints";
disabled = isPy27;
disabled = pythonOlder "3.6";
format = "setuptools";
src = fetchFromGitHub {
owner = "raphaelm";
repo = "python-fints";
rev = "v${version}";
hash = "sha256-3frJIEZgVnZD2spWYIuEtUt7MVsU/Zj82HOB9fKYQWE=";
hash = "sha256-SREprcrIdeKVpL22IViexwiKmFfbT2UbKEmxtVm6iu0=";
};
propagatedBuildInputs = [ requests mt-940 sepaxml bleach ];