Skip to content

Commit

Permalink
python311Packages.pandas-stubs: 2.2.0.240218 -> 2.2.2.240603, update/…
Browse files Browse the repository at this point in the history
…fix deps and tests
  • Loading branch information
malob committed Jul 25, 2024
1 parent 48b8f3c commit 070be3a
Showing 1 changed file with 34 additions and 17 deletions.
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

0 comments on commit 070be3a

Please sign in to comment.