Files
nixpkgs/pkgs/development/python-modules/pandas/default.nix
T

117 lines
2.9 KiB
Nix
Raw Normal View History

2016-12-25 10:40:57 +01:00
{ buildPythonPackage
2017-04-22 23:44:00 +02:00
, fetchPypi
2016-12-25 10:40:57 +01:00
, python
, stdenv
2017-04-22 23:44:00 +02:00
, pytest
2016-12-25 10:40:57 +01:00
, glibcLocales
, cython
, dateutil
, scipy
2017-10-31 03:08:36 +09:00
, moto
2016-12-25 10:40:57 +01:00
, numexpr
, pytz
, xlrd
, bottleneck
, sqlalchemy
, lxml
, html5lib
, beautifulsoup4
, openpyxl
, tables
, xlwt
, libcxx ? null
}:
let
inherit (stdenv.lib) optional optionals optionalString;
2016-12-25 10:40:57 +01:00
inherit (stdenv) isDarwin;
2018-06-23 11:48:06 +02:00
2016-12-25 10:40:57 +01:00
in buildPythonPackage rec {
pname = "pandas";
2018-08-13 09:28:26 +02:00
version = "0.23.4";
2016-12-25 10:40:57 +01:00
2017-04-22 23:44:00 +02:00
src = fetchPypi {
inherit pname version;
2018-08-13 09:28:26 +02:00
sha256 = "5b24ca47acf69222e82530e89111dd9d14f9b970ab2cd3a1c2c78f0c4fbba4f4";
2016-12-25 10:40:57 +01:00
};
2018-06-12 18:47:03 +02:00
checkInputs = [ pytest glibcLocales moto ];
buildInputs = [] ++ optional isDarwin libcxx;
2016-12-25 10:40:57 +01:00
propagatedBuildInputs = [
cython
dateutil
scipy
numexpr
pytz
xlrd
bottleneck
sqlalchemy
lxml
html5lib
beautifulsoup4
openpyxl
tables
xlwt
2017-05-30 02:14:46 +02:00
];
2016-12-25 10:40:57 +01:00
# For OSX, we need to add a dependency on libcxx, which provides
# `complex.h` and other libraries that pandas depends on to build.
2017-04-18 09:44:33 +02:00
postPatch = optionalString isDarwin ''
2016-12-25 10:40:57 +01:00
cpp_sdk="${libcxx}/include/c++/v1";
echo "Adding $cpp_sdk to the setup.py common_include variable"
substituteInPlace setup.py \
--replace "['pandas/src/klib', 'pandas/src']" \
"['pandas/src/klib', 'pandas/src', '$cpp_sdk']"
'';
2018-06-23 11:48:06 +02:00
disabledTests = stdenv.lib.concatMapStringsSep " and " (s: "not " + s) ([
# since 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"
"test_ambiguous_compat"
# Locale-related
"test_names"
"test_dt_accessor_datetime_name_accessors"
"test_datetime_name_accessors"
# Can't import from test folder
"test_oo_optimizable"
2018-07-28 12:13:44 +02:00
# Disable IO related tests because IO data is no longer distributed
"io"
2018-09-01 10:37:27 +02:00
# KeyError Timestamp
"test_to_excel"
2018-06-23 11:48:06 +02:00
] ++ optionals isDarwin [
"test_locale"
"test_clipboard"
]);
2016-12-25 10:40:57 +01:00
checkPhase = ''
runHook preCheck
2017-05-30 02:14:46 +02:00
''
# TODO: Get locale and clipboard support working on darwin.
# Until then we disable the tests.
+ optionalString isDarwin ''
# Fake the impure dependencies pbpaste and pbcopy
echo "#!/bin/sh" > pbcopy
echo "#!/bin/sh" > pbpaste
chmod a+x pbcopy pbpaste
export PATH=$(pwd):$PATH
'' + ''
2018-07-28 12:13:44 +02:00
LC_ALL="en_US.UTF-8" py.test $out/${python.sitePackages}/pandas --skip-slow --skip-network -k "$disabledTests"
2017-04-22 23:44:00 +02:00
runHook postCheck
2016-12-25 10:40:57 +01:00
'';
meta = {
2017-03-01 13:01:13 +00:00
# https://github.com/pandas-dev/pandas/issues/14866
# pandas devs are no longer testing i686 so safer to assume it's broken
broken = stdenv.isi686;
homepage = http://pandas.pydata.org/;
2016-12-25 10:40:57 +01:00
description = "Python Data Analysis Library";
license = stdenv.lib.licenses.bsd3;
2017-05-30 02:14:46 +02:00
maintainers = with stdenv.lib.maintainers; [ raskin fridh knedlsepp ];
2016-12-25 10:40:57 +01:00
platforms = stdenv.lib.platforms.unix;
};
2017-03-01 13:01:13 +00:00
}