Commit 359c7a11 authored by Robert Schütz's avatar Robert Schütz Committed by Robert Schütz
Browse files

python310Packages.fints: 3.1.0 -> 4.0.0

parent af10ec1c
Loading
Loading
Loading
Loading
+9 −4
Original line number Diff line number Diff line
{ 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 ];