diff --git a/pkgs/development/python-modules/geocachingapi/default.nix b/pkgs/development/python-modules/geocachingapi/default.nix index d72a4e3eb6c7..2b4bba0a434b 100644 --- a/pkgs/development/python-modules/geocachingapi/default.nix +++ b/pkgs/development/python-modules/geocachingapi/default.nix @@ -3,6 +3,7 @@ , backoff , buildPythonPackage , fetchFromGitHub +, pythonOlder , setuptools-scm , yarl }: @@ -10,6 +11,9 @@ buildPythonPackage rec { pname = "geocachingapi"; version = "0.1.1"; + format = "setuptools"; + + disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "Sholofly"; @@ -33,7 +37,9 @@ buildPythonPackage rec { # Tests require a token and network access doCheck = false; - pythonImportsCheck = [ "geocachingapi" ]; + pythonImportsCheck = [ + "geocachingapi" + ]; meta = with lib; { description = "Python API to control the Geocaching API";