about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-02-14 08:37:22 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2019-02-16 12:11:28 +0100
commit4aaa34f7244126c31af23cb92850981715f71557 (patch)
tree88cbaf2a06061f52698d0c1310cfdf9babbb7c8e /pkgs/development/python-modules
parent5e3bdd4242383131f70c2db8207cb46b89fc3071 (diff)
downloadnixlib-4aaa34f7244126c31af23cb92850981715f71557.tar
nixlib-4aaa34f7244126c31af23cb92850981715f71557.tar.gz
nixlib-4aaa34f7244126c31af23cb92850981715f71557.tar.bz2
nixlib-4aaa34f7244126c31af23cb92850981715f71557.tar.lz
nixlib-4aaa34f7244126c31af23cb92850981715f71557.tar.xz
nixlib-4aaa34f7244126c31af23cb92850981715f71557.tar.zst
nixlib-4aaa34f7244126c31af23cb92850981715f71557.zip
python: pandas: 0.23.4 -> 0.24.1
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/pandas/default.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/pandas/default.nix b/pkgs/development/python-modules/pandas/default.nix
index 0fa5db6ca101..a9b84132734b 100644
--- a/pkgs/development/python-modules/pandas/default.nix
+++ b/pkgs/development/python-modules/pandas/default.nix
@@ -16,6 +16,7 @@
 , lxml
 , html5lib
 , beautifulsoup4
+, hypothesis
 , openpyxl
 , tables
 , xlwt
@@ -28,16 +29,17 @@ let
 
 in buildPythonPackage rec {
   pname = "pandas";
-  version = "0.23.4";
+  version = "0.24.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "5b24ca47acf69222e82530e89111dd9d14f9b970ab2cd3a1c2c78f0c4fbba4f4";
+    sha256 = "435821cb2501eabbcee7e83614bd710940dc0cf28b5afbc4bdb816c31cec71af";
   };
 
-  checkInputs = [ pytest glibcLocales moto ];
+  checkInputs = [ pytest glibcLocales moto hypothesis ];
 
-  buildInputs = [ cython ] ++ optional isDarwin libcxx;
+  nativeBuildInputs = [ cython ];
+  buildInputs = optional isDarwin libcxx;
   propagatedBuildInputs = [
     dateutil
     scipy