summary refs log tree commit diff
path: root/pkgs/development/python-modules/Babel/default.nix
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2020-01-30 04:34:19 +0100
committerFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-02-02 20:17:35 +0100
commit401649da349c236d7d10d8cf744d73feafd33a0c (patch)
tree820bb7fd51bfa2971a4fd5eb6a7bcac301b09e07 /pkgs/development/python-modules/Babel/default.nix
parentad78c66eb51138fd18c5375b86c2aea339826688 (diff)
downloadnixpkgs-401649da349c236d7d10d8cf744d73feafd33a0c.tar
nixpkgs-401649da349c236d7d10d8cf744d73feafd33a0c.tar.gz
nixpkgs-401649da349c236d7d10d8cf744d73feafd33a0c.tar.bz2
nixpkgs-401649da349c236d7d10d8cf744d73feafd33a0c.tar.lz
nixpkgs-401649da349c236d7d10d8cf744d73feafd33a0c.tar.xz
nixpkgs-401649da349c236d7d10d8cf744d73feafd33a0c.tar.zst
nixpkgs-401649da349c236d7d10d8cf744d73feafd33a0c.zip
pythonPackages.Babel: Fix build with Nix < 2.3. Fixes #75676
Diffstat (limited to 'pkgs/development/python-modules/Babel/default.nix')
-rw-r--r--pkgs/development/python-modules/Babel/default.nix27
1 files changed, 22 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/Babel/default.nix b/pkgs/development/python-modules/Babel/default.nix
index 1aafee5bec4..d700a07b275 100644
--- a/pkgs/development/python-modules/Babel/default.nix
+++ b/pkgs/development/python-modules/Babel/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, buildPythonPackage, fetchPypi, pytz, pytest, freezegun, glibcLocales }:
+{ stdenv, lib, buildPythonPackage, fetchPypi, fetchpatch, pytz, pytest, freezegun, glibcLocales }:
 
 buildPythonPackage rec {
   pname = "Babel";
@@ -9,14 +9,31 @@ buildPythonPackage rec {
     sha256 = "e86135ae101e31e2c8ec20a4e0c5220f4eed12487d5cf3f78be7e98d3a57fc28";
   };
 
+  patches = [
+    # The following 2 patches fix the test suite failing on nix < 2.3 with
+    # Python < 3 because those nix versions do not run in a pseudoterminal,
+    # which makes Python 2 not set the default encoding to UTF-8, and the
+    # Babel code crashes when printing a warning in that case.
+    # See #75676 and https://github.com/python-babel/babel/pull/691.
+    # It is important to fix this because otherwise Babel is not buildable
+    # with older nix versions (e.g. on machines used as --builders).
+    # TODO: Remove at release > 2.8.0.
+    (fetchpatch {
+      name = "Babel-Introduce-invariant-that-invalid_pofile-takes-unicode-line.patch";
+      url = "https://github.com/python-babel/babel/commit/f4f6653e6aa053724d2c6dc0ee71dcb928013352.patch";
+      sha256 = "1kyknwn9blspcf9yxmgdiaxdii1dnkblyhcflqwhxyl1mss1dxv5";
+    })
+    (fetchpatch {
+      name = "Babel-Fix-unicode-printing-error-on-Python-2-without-TTY.patch";
+      url = "https://github.com/python-babel/babel/commit/da7f31143847659b6b74d802618b03438aceb350.patch";
+      sha256 = "09yny8614knr8ngrrddmqzkxk70am135rccv2ncc6dji4xbqbfln";
+    })
+  ];
+
   propagatedBuildInputs = [ pytz ];
 
   checkInputs = [ pytest freezegun ];
 
-  # Note that a test will fail with an encoding error on Python 2 with Nix < 2.3
-  # due to https://github.com/NixOS/nixpkgs/pull/75676#issuecomment-579008837.
-  # TODO: Remove the above comment when we use a version that includes the fix
-  #       from https://github.com/python-babel/babel/pull/691
   doCheck = !stdenv.isDarwin;
 
   meta = with lib; {