pythonPackages.pandas: cleanup

* Sort imports
* add changelog
This commit is contained in:
Drew Risinger 2020-09-17 10:19:28 -04:00 committed by Jonathan Ringer
parent f3ecc37a85
commit ac8aff99bf

View File

@ -1,27 +1,29 @@
{ buildPythonPackage { stdenv
, buildPythonPackage
, fetchPypi , fetchPypi
, python , python
, stdenv , isPy38
, pytest , beautifulsoup4
, glibcLocales , bottleneck
, cython , cython
, dateutil , dateutil
, scipy
, moto
, numexpr
, pytz
, xlrd
, bottleneck
, sqlalchemy
, lxml
, html5lib , html5lib
, beautifulsoup4 , lxml
, hypothesis , numexpr
, openpyxl , openpyxl
, pytz
, sqlalchemy
, scipy
, tables , tables
, xlrd
, xlwt , xlwt
# Test Inputs
, glibcLocales
, hypothesis
, moto
, pytest
# Darwin inputs
, runtimeShell , runtimeShell
, isPy38
, libcxx ? null , libcxx ? null
}: }:
@ -43,18 +45,18 @@ in buildPythonPackage rec {
nativeBuildInputs = [ cython ]; nativeBuildInputs = [ cython ];
buildInputs = optional isDarwin libcxx; buildInputs = optional isDarwin libcxx;
propagatedBuildInputs = [ propagatedBuildInputs = [
dateutil
scipy
numexpr
pytz
xlrd
bottleneck
sqlalchemy
lxml
html5lib
beautifulsoup4 beautifulsoup4
bottleneck
dateutil
html5lib
numexpr
lxml
openpyxl openpyxl
pytz
scipy
sqlalchemy
tables tables
xlrd
xlwt xlwt
]; ];
@ -128,14 +130,15 @@ in buildPythonPackage rec {
runHook postCheck runHook postCheck
''; '';
meta = { meta = with stdenv.lib; {
# https://github.com/pandas-dev/pandas/issues/14866 # https://github.com/pandas-dev/pandas/issues/14866
# pandas devs are no longer testing i686 so safer to assume it's broken # pandas devs are no longer testing i686 so safer to assume it's broken
broken = stdenv.isi686; broken = stdenv.isi686;
homepage = "https://pandas.pydata.org/"; homepage = "https://pandas.pydata.org/";
changelog = "https://pandas.pydata.org/docs/whatsnew/index.html";
description = "Python Data Analysis Library"; description = "Python Data Analysis Library";
license = stdenv.lib.licenses.bsd3; license = licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ raskin fridh knedlsepp ]; maintainers = with maintainers; [ raskin fridh knedlsepp ];
platforms = stdenv.lib.platforms.unix; platforms = platforms.unix;
}; };
} }