mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
94 lines
2.7 KiB
Nix
94 lines
2.7 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
mock,
|
|
msgpack,
|
|
pandas,
|
|
pytestCheckHook,
|
|
python-dateutil,
|
|
pytz,
|
|
requests,
|
|
requests-mock,
|
|
setuptools,
|
|
six,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "influxdb";
|
|
version = "5.3.2";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-WMZH9gQ3Et2G6a7hLrTM+7tUFUZ7yZEKSKqMdMEQiXA=";
|
|
};
|
|
|
|
patches = [
|
|
# https://github.com/influxdata/influxdb-python/pull/835
|
|
./remove-nose.patch
|
|
];
|
|
|
|
postPatch = ''
|
|
for f in influxdb/tests/dataframe_client_test.py influxdb/tests/influxdb08/dataframe_client_test.py; do
|
|
substituteInPlace "$f" \
|
|
--replace-fail "pandas.util.testing" "pandas.testing"
|
|
done
|
|
|
|
for f in influxdb/tests/influxdb08/client_test.py influxdb/tests/client_test.py; do
|
|
substituteInPlace "$f" \
|
|
--replace-fail "assertRaisesRegexp" "assertRaisesRegex"
|
|
done
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
msgpack
|
|
python-dateutil
|
|
pytz
|
|
requests
|
|
six
|
|
];
|
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
nativeCheckInputs = [
|
|
mock
|
|
pandas
|
|
pytestCheckHook
|
|
requests-mock
|
|
];
|
|
|
|
disabledTests = [
|
|
"socket"
|
|
# Tests cause FutureWarning due to use of 'record' instead of 'records' in pandas.
|
|
# https://github.com/influxdata/influxdb-python/pull/845
|
|
# Also type mismatches in assertEqual on DataFrame:
|
|
# b'foo[30 chars]_one=1.0,column_two=1.0 0\nfoo,tag_one=red,tag[47 chars]00\n' !=
|
|
# b'foo[30 chars]_one="1",column_two=1i 0\nfoo,tag_one=red,tag_[46 chars]00\n'
|
|
"test_write_points_from_dataframe_with_nan_json"
|
|
"test_write_points_from_dataframe_with_tags_and_nan_json"
|
|
"test_write_points_from_dataframe_with_numeric_precision"
|
|
# Reponse is not empty but `s = '孝'` and the JSON decoder chokes on that
|
|
"test_query_with_empty_result"
|
|
# Pandas API changes cause it to no longer infer datetimes in the expected manner
|
|
"test_multiquery_into_dataframe"
|
|
"test_multiquery_into_dataframe_dropna"
|
|
# FutureWarning: 'H' is deprecated and will be removed in a future version, please use 'h' instead.
|
|
"test_write_points_from_dataframe_with_tag_escaped"
|
|
# AssertionError: 2 != 1 : <class 'influxdb.tests.helper_test.TestSeriesHelper.testWarnBulkSizeNoEffect.<locals>.WarnBulkSizeNoEffect'> call should have generated one warning.
|
|
"testWarnBulkSizeNoEffect"
|
|
];
|
|
|
|
pythonImportsCheck = [ "influxdb" ];
|
|
|
|
meta = with lib; {
|
|
description = "Python client for InfluxDB";
|
|
homepage = "https://github.com/influxdb/influxdb-python";
|
|
changelog = "https://github.com/influxdata/influxdb-python/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|