about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2020-01-28 01:32:05 +0100
committerGitHub <noreply@github.com>2020-01-28 01:32:05 +0100
commitd91d400a847a74be32042301af37453e712f37bc (patch)
tree9617974c54d3e930815f0e36877e089316cde0b5
parent63b1eabcdb396c306079137a188361bf82957a96 (diff)
parent19ff097181fdaf4a84c2087f1bc59fa6b0304b6b (diff)
downloadnixlib-d91d400a847a74be32042301af37453e712f37bc.tar
nixlib-d91d400a847a74be32042301af37453e712f37bc.tar.gz
nixlib-d91d400a847a74be32042301af37453e712f37bc.tar.bz2
nixlib-d91d400a847a74be32042301af37453e712f37bc.tar.lz
nixlib-d91d400a847a74be32042301af37453e712f37bc.tar.xz
nixlib-d91d400a847a74be32042301af37453e712f37bc.tar.zst
nixlib-d91d400a847a74be32042301af37453e712f37bc.zip
Merge pull request #78644 from nh2/babel-nix-2.2-comment
pythonPackages.Babel: Add comment
-rw-r--r--pkgs/development/python-modules/Babel/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/Babel/default.nix b/pkgs/development/python-modules/Babel/default.nix
index ef86aedc527b..1aafee5bec49 100644
--- a/pkgs/development/python-modules/Babel/default.nix
+++ b/pkgs/development/python-modules/Babel/default.nix
@@ -13,6 +13,10 @@ buildPythonPackage rec {
 
   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; {