Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

python311Packages.pandas-stubs: 2.2.0.240218 -> 2.2.2.240603, update/fix deps and tests #329901

Merged
merged 1 commit into from
Jul 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 34 additions & 17 deletions pkgs/development/python-modules/pandas-stubs/default.nix
Original file line number Diff line number Diff line change
@@ -1,34 +1,41 @@
{
lib,
stdenv,
beautifulsoup4,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,

# build-system
poetry-core,

# dependencies
numpy,
types-pytz,

# tests
pytestCheckHook,
beautifulsoup4,
html5lib,
jinja2,
lxml,
matplotlib,
odfpy,
openpyxl,
pandas,
poetry-core,
pyarrow,
pyreadstat,
pytestCheckHook,
pythonOlder,
scipy,
sqlalchemy,
tables,
tabulate,
types-pytz,
typing-extensions,
xarray,
xlsxwriter,
}:

buildPythonPackage rec {
pname = "pandas-stubs";
version = "2.2.0.240218";
version = "2.2.2.240603";
pyproject = true;

disabled = pythonOlder "3.9";
Expand All @@ -37,47 +44,57 @@ buildPythonPackage rec {
owner = "pandas-dev";
repo = "pandas-stubs";
rev = "refs/tags/v${version}";
hash = "sha256-416vyaHcSfTfkSNKZ05edozfsMmNKcpOZAoPenCLFzQ=";
hash = "sha256-wJ7lN1+BGNqhwgPLmmpb3foX6rIEy3R62rOvu0mr8xs=";
};

nativeBuildInputs = [ poetry-core ];
build-system = [ poetry-core ];

propagatedBuildInputs = [
pandas
dependencies = [
numpy
types-pytz
];

nativeCheckInputs = [
pytestCheckHook
beautifulsoup4
html5lib
jinja2
lxml
matplotlib
odfpy
openpyxl
pandas
pyarrow
pyreadstat
pytestCheckHook
scipy
sqlalchemy
tables
tabulate
typing-extensions
xarray
xlsxwriter

# missing dependencies in nixpkgs
# python-calamine
];

disabledTests =
[
# AttributeErrors, missing dependencies, error and warning checks
"test_types_groupby"
"test_frame_groupby_resample"
"test_orc"
"test_all_read_without_lxml_dtype_backend"
# Missing dependencies, error and warning checks
"test_all_read_without_lxml_dtype_backend" # pyarrow.orc
"test_orc" # pyarrow.orc
"test_read_excel" # python-calamine
"test_plotting" # UserWarning: No artists with labels found to put in legend.
"test_spss" # FutureWarning: ChainedAssignmentError: behaviour will change in pandas 3.0!
"test_show_version"
]
++ lib.optionals stdenv.isDarwin [
"test_plotting" # Fatal Python error: Illegal instruction
"test_clipboard" # FileNotFoundError: [Errno 2] No such file or directory: 'pbcopy'
]
++ lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
# Disable tests for types that are not supported on aarch64 in `numpy` < 2.0
"test_astype_float" # `f16` and `float128`
"test_astype_complex" # `c32` and `complex256`
];

pythonImportsCheck = [ "pandas" ];
Expand Down