python312Packages.pint-pandas: unbreak on Darwin

This commit is contained in:
Malo Bourgon 2025-05-12 17:44:10 -07:00
parent 69743c1341
commit 880f3ada6c
No known key found for this signature in database

View File

@ -1,5 +1,4 @@
{
stdenv,
lib,
buildPythonPackage,
fetchFromGitHub,
@ -9,6 +8,7 @@
wheel,
pint,
pandas,
packaging,
pytestCheckHook,
}:
@ -35,12 +35,12 @@ buildPythonPackage rec {
dependencies = [
pint
pandas
packaging
];
nativeCheckInputs = [ pytestCheckHook ];
meta = {
broken = stdenv.hostPlatform.isDarwin;
description = "Pandas support for pint";
license = lib.licenses.bsd3;
homepage = "https://github.com/hgrecco/pint-pandas";