python: pandas: 0.23.4 -> 0.24.1
This commit is contained in:
parent
691965a0c5
commit
c80c568467
1 changed files with 6 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue