From f654797d01431e6aa6df6074a9723c8a7ba85f42 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 1 Feb 2025 20:30:00 +0100 Subject: [PATCH] python313Packages.folium: disable failing tests --- pkgs/development/python-modules/folium/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/folium/default.nix b/pkgs/development/python-modules/folium/default.nix index 51f958e78f21..5a45f37e4100 100644 --- a/pkgs/development/python-modules/folium/default.nix +++ b/pkgs/development/python-modules/folium/default.nix @@ -16,7 +16,6 @@ selenium, setuptools, setuptools-scm, - wheel, xyzservices, }: @@ -34,13 +33,12 @@ buildPythonPackage rec { hash = "sha256-qTTJK12nHIhcMkPu4rb2IYWm96EjRafftacrlfeGqZg="; }; - nativeBuildInputs = [ + build-system = [ setuptools setuptools-scm - wheel ]; - propagatedBuildInputs = [ + dependencies = [ branca jinja2 numpy @@ -55,7 +53,6 @@ buildPythonPackage rec { pandas pillow pytestCheckHook - selenium ]; disabledTests = [ @@ -71,6 +68,11 @@ buildPythonPackage rec { "test_timedynamic_geo_json" ]; + disabledTestPaths = [ + # Import issue with selenium.webdriver.common.fedcm + "tests/selenium" + ]; + pythonImportsCheck = [ "folium" ]; meta = {