Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fbd0f1d3e5a8
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ab2f63234d54
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 6, 2020

  1. python3Packages.fints: 2.2.0 -> 3.0.0

    elohmeier authored and Jon committed Jan 6, 2020
    Copy the full SHA
    ab2f632 View commit details
Showing with 2 additions and 7 deletions.
  1. +2 −7 pkgs/development/python-modules/fints/default.nix
9 changes: 2 additions & 7 deletions pkgs/development/python-modules/fints/default.nix
Original file line number Diff line number Diff line change
@@ -7,22 +7,17 @@
}:

buildPythonPackage rec {
version = "2.2.0";
version = "3.0.0";
pname = "fints";
disabled = isPy27;

src = fetchFromGitHub {
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 ];