summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-12-05 11:01:34 +0100
committerVladimír Čunát <vcunat@gmail.com>2015-12-05 11:13:29 +0100
commitd38e9d3b377ba51d38faccbe7b52385ae8d0f030 (patch)
tree2993d6e24186ac0186c048a17b085f7d7bef85c8
parent263fd55d4b2d9c17dac87ee7a7a39c951aee1b86 (diff)
downloadnixlib-d38e9d3b377ba51d38faccbe7b52385ae8d0f030.tar
nixlib-d38e9d3b377ba51d38faccbe7b52385ae8d0f030.tar.gz
nixlib-d38e9d3b377ba51d38faccbe7b52385ae8d0f030.tar.bz2
nixlib-d38e9d3b377ba51d38faccbe7b52385ae8d0f030.tar.lz
nixlib-d38e9d3b377ba51d38faccbe7b52385ae8d0f030.tar.xz
nixlib-d38e9d3b377ba51d38faccbe7b52385ae8d0f030.tar.zst
nixlib-d38e9d3b377ba51d38faccbe7b52385ae8d0f030.zip
tarball: fix darwin evaluation
(cherry picked from commit 12e788ff44a7c0eeca3bb8cb1a11d6308c2b9b10)
-rw-r--r--pkgs/top-level/python-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix
index 0280bf366e8c..e994c070e568 100644
--- a/pkgs/top-level/python-packages.nix
+++ b/pkgs/top-level/python-packages.nix
@@ -12552,7 +12552,7 @@ in modules // {
       (if isPy35 then null else html5lib)
       modules.sqlite3
       beautifulsoup4
-    ] ++ optional isDarwin pkgs.darwin.adv_cmds; # provides the locale command
+    ] ++ optional isDarwin pkgs.darwin.locale; # provides the locale command
 
     # For OSX, we need to add a dependency on libcxx, which provides
     # `complex.h` and other libraries that pandas depends on to build.