587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
96 lines
1.8 KiB
Nix
96 lines
1.8 KiB
Nix
{ backoff
|
|
, sparqlwrapper
|
|
, boto3
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, gremlinpython
|
|
, jsonpath-ng
|
|
, lib
|
|
, moto
|
|
, openpyxl
|
|
, opensearch-py
|
|
, pandas
|
|
, pg8000
|
|
, poetry-core
|
|
, progressbar2
|
|
, pyarrow
|
|
, pymysql
|
|
, pyodbc
|
|
, pyparsing
|
|
, pytestCheckHook
|
|
, pythonOlder
|
|
, pythonRelaxDepsHook
|
|
, redshift-connector
|
|
, requests-aws4auth
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "awswrangler";
|
|
version = "3.7.2";
|
|
pyproject = true;
|
|
|
|
disabled = pythonOlder "3.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aws";
|
|
repo = "aws-sdk-pandas";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-1eb2oTiRNxA2XTpkScA5WJutN5P6FX96jC4Ra9VdonI=";
|
|
};
|
|
|
|
build-system = [
|
|
poetry-core
|
|
pythonRelaxDepsHook
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"packaging"
|
|
];
|
|
|
|
dependencies = [
|
|
boto3
|
|
gremlinpython
|
|
jsonpath-ng
|
|
openpyxl
|
|
opensearch-py
|
|
pandas
|
|
pg8000
|
|
progressbar2
|
|
pyarrow
|
|
pymysql
|
|
redshift-connector
|
|
requests-aws4auth
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
moto
|
|
pyparsing
|
|
pytestCheckHook
|
|
];
|
|
|
|
pytestFlagsArray = [
|
|
# Subset of tests that run in upstream CI (many others require credentials)
|
|
# https://github.com/aws/aws-sdk-pandas/blob/20fec775515e9e256e8cee5aee12966516608840/.github/workflows/minimal-tests.yml#L36-L43
|
|
"tests/unit/test_metadata.py"
|
|
"tests/unit/test_session.py"
|
|
"tests/unit/test_utils.py"
|
|
"tests/unit/test_moto.py"
|
|
];
|
|
|
|
passthru.optional-dependencies = {
|
|
sqlserver = [
|
|
pyodbc
|
|
];
|
|
sparql = [
|
|
sparqlwrapper
|
|
];
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Pandas on AWS";
|
|
homepage = "https://github.com/aws/aws-sdk-pandas";
|
|
changelog = "https://github.com/aws/aws-sdk-pandas/releases/tag/${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ mcwitt ];
|
|
};
|
|
}
|