From 149e5d9ad134f131ebbb75ba6d13f5ecb32efac9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 19 Jan 2026 21:13:44 -0800 Subject: [PATCH] python3Packages.geoip2: run all tests --- pkgs/development/python-modules/geoip2/default.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pkgs/development/python-modules/geoip2/default.nix b/pkgs/development/python-modules/geoip2/default.nix index 828db106a9a5..461fac33435c 100644 --- a/pkgs/development/python-modules/geoip2/default.nix +++ b/pkgs/development/python-modules/geoip2/default.nix @@ -6,7 +6,6 @@ h11, maxminddb, pytestCheckHook, - pythonAtLeast, requests-mock, pytest-httpserver, requests, @@ -46,13 +45,6 @@ buildPythonPackage rec { pythonImportsCheck = [ "geoip2" ]; - disabledTests = - lib.optionals (pythonAtLeast "3.10") [ - # https://github.com/maxmind/GeoIP2-python/pull/136 - "TestAsyncClient" - ] - ++ lib.optionals (pythonAtLeast "3.10") [ "test_request" ]; - meta = { description = "GeoIP2 webservice client and database reader"; homepage = "https://github.com/maxmind/GeoIP2-python";