Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 735df1a64194
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b50d55871fb7
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jul 19, 2020

  1. Copy the full SHA
    3cf6501 View commit details

Commits on Jul 26, 2020

  1. Copy the full SHA
    0c36b32 View commit details
  2. Copy the full SHA
    b50d558 View commit details
Showing with 9 additions and 2 deletions.
  1. +9 −2 pkgs/development/python-modules/ihatemoney/default.nix
11 changes: 9 additions & 2 deletions pkgs/development/python-modules/ihatemoney/default.nix
Original file line number Diff line number Diff line change
@@ -33,15 +33,22 @@

buildPythonPackage rec {
pname = "ihatemoney";
version = "4.1";
version = "4.1.5";

src = fetchFromGitHub {
owner = "spiral-project";
repo = pname;
rev = version;
sha256 = "1ai7v2i2rvswzv21nwyq51fvp8lr2x2cl3n34p11br06kc1pcmin";
sha256 = "07lkc0rhj6f4fka4m1vimycjxa452d8wlclknviqz2566gnb998n";
};

postPatch = ''
# remove patch release level pinning
sed -i 's/==\([0-9]*\.[0-9]*\).*"/~=\1"/' setup.py
# https://github.com/spiral-project/ihatemoney/issues/567
sed -i 's/WTForms~=2.2/WTForms>=2.1,<2.3/' setup.py
'';

propagatedBuildInputs = [
alembic
aniso8601