python3Packages.ppscore: fix build with pandas 2

Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
This commit is contained in:
Sefa Eyeoglu 2024-05-20 17:57:27 +02:00
parent 9e3f89429f
commit b745fcc7dd
No known key found for this signature in database
GPG Key ID: E13DFD4B47127951

View File

@ -2,6 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
pythonRelaxDepsHook,
setuptools,
pandas,
pytestCheckHook,
@ -23,7 +24,10 @@ buildPythonPackage rec {
hash = "sha256-gJStsL8fN17kvXO8EH/NHGIBelPknJzYw5WEvHsFooU=";
};
nativeBuildInputs = [ setuptools ];
nativeBuildInputs = [
pythonRelaxDepsHook
setuptools
];
propagatedBuildInputs = [
pandas
@ -32,6 +36,8 @@ buildPythonPackage rec {
nativeCheckInputs = [ pytestCheckHook ];
pythonRelaxDeps = [ "pandas" ];
pythonImportsCheck = [ "ppscore" ];
meta = with lib; {