summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEnno Lohmeier <enno@nerdworks.de>2020-01-02 10:21:39 +0100
committerJon <jonringer@users.noreply.github.com>2020-01-05 18:35:35 -0800
commitab2f63234d546e4200efccc848e87449697b1e6a (patch)
treee75be6be0ae4287ca019ecee13edda002f7ee900 /pkgs
parentfbd0f1d3e5a869bc946828e3010c20b1f4405c13 (diff)
downloadnixpkgs-ab2f63234d546e4200efccc848e87449697b1e6a.tar
nixpkgs-ab2f63234d546e4200efccc848e87449697b1e6a.tar.gz
nixpkgs-ab2f63234d546e4200efccc848e87449697b1e6a.tar.bz2
nixpkgs-ab2f63234d546e4200efccc848e87449697b1e6a.tar.lz
nixpkgs-ab2f63234d546e4200efccc848e87449697b1e6a.tar.xz
nixpkgs-ab2f63234d546e4200efccc848e87449697b1e6a.tar.zst
nixpkgs-ab2f63234d546e4200efccc848e87449697b1e6a.zip
python3Packages.fints: 2.2.0 -> 3.0.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/fints/default.nix9
1 files changed, 2 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/fints/default.nix b/pkgs/development/python-modules/fints/default.nix
index f780c76fd6d..d3f796ab950 100644
--- a/pkgs/development/python-modules/fints/default.nix
+++ b/pkgs/development/python-modules/fints/default.nix
@@ -7,7 +7,7 @@
 }:
 
 buildPythonPackage rec {
-  version = "2.2.0";
+  version = "3.0.0";
   pname = "fints";
   disabled = isPy27;
 
@@ -15,14 +15,9 @@ buildPythonPackage rec {
     owner = "raphaelm";
     repo = "python-fints";
     rev = "v${version}";
-    sha256 = "1gx173dzdprf3jsc7dss0xax8s6l2hr02qg9m5c4rksb3dl5fl8w";
+    sha256 = "00fqgnmv7z6d792ga4cyzn9lrfjf79jplkssm2jbyb0akfggfj7h";
   };
 
-  postPatch = ''
-    substituteInPlace setup.py \
-      --replace 'sepaxml==2.0.*' 'sepaxml~=2.0'
-  '';
-
   propagatedBuildInputs = [ requests mt-940 sepaxml bleach ];
 
   checkInputs = [ pytest ];