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";