summary refs log tree commit diff
path: root/pkgs/development/python-modules/pandas/2.nix
diff options
context:
space:
mode:
authorCarsten Burstedde <burstedde@ins.uni-bonn.de>2021-07-05 19:30:59 +0200
committerCarsten Burstedde <burstedde@ins.uni-bonn.de>2021-07-05 19:30:59 +0200
commit705afbd338e26b486aaacc237ee4fffbf9759b21 (patch)
tree5c69ce5ff8d77f023b12dcbea6b6d3a4d68e982b /pkgs/development/python-modules/pandas/2.nix
parentc99a5b9a60ae5c5204a3f41f5d65b642093d1b82 (diff)
parent94982e6f874ec52eaf3fed29c8d229cdc1f8bc2c (diff)
downloadnixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar.gz
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar.bz2
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar.lz
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar.xz
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.tar.zst
nixpkgs-705afbd338e26b486aaacc237ee4fffbf9759b21.zip
Merge branch 'master' into package-petsc-p4est
Diffstat (limited to 'pkgs/development/python-modules/pandas/2.nix')
-rw-r--r--pkgs/development/python-modules/pandas/2.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pandas/2.nix b/pkgs/development/python-modules/pandas/2.nix
index 8af4094b0cf..9b29a844269 100644
--- a/pkgs/development/python-modules/pandas/2.nix
+++ b/pkgs/development/python-modules/pandas/2.nix
@@ -8,7 +8,7 @@
 , pytest
 , glibcLocales
 , cython
-, dateutil
+, python-dateutil
 , scipy
 , moto
 , numexpr
@@ -41,7 +41,7 @@ buildPythonPackage rec {
   nativeBuildInputs = [ cython ];
   buildInputs = lib.optional stdenv.isDarwin libcxx;
   propagatedBuildInputs = [
-    dateutil
+    python-dateutil
     scipy
     numexpr
     pytz
@@ -68,7 +68,7 @@ buildPythonPackage rec {
 
 
   disabledTests = lib.concatMapStringsSep " and " (s: "not " + s) ([
-    # since dateutil 0.6.0 the following fails: test_fallback_plural, test_ambiguous_flags, test_ambiguous_compat
+    # since python-dateutil 0.6.0 the following fails: test_fallback_plural, test_ambiguous_flags, test_ambiguous_compat
     # was supposed to be solved by https://github.com/dateutil/dateutil/issues/321, but is not the case
     "test_fallback_plural"
     "test_ambiguous_flags"