pythonPackages.google-i18n-address: disable on python 3.9

wip/yesman
Sandro Jäckel 3 years ago
parent a9f1f7f417
commit f6c12795e8
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
  1. 5
      pkgs/development/python-modules/google-i18n-address/default.nix

@ -1,8 +1,9 @@
{ buildPythonPackage, fetchPypi, lib, requests, pytestCheckHook, mock }:
{ buildPythonPackage, fetchPypi, pythonAtLeast, lib, requests, pytestCheckHook, mock }:
buildPythonPackage rec {
pname = "google-i18n-address";
version = "2.4.0";
disabled = pythonAtLeast "3.9";
src = fetchPypi {
inherit pname version;
@ -15,7 +16,7 @@ buildPythonPackage rec {
meta = with lib; {
description = "Google's i18n address data packaged for Python";
homepage = "https://pypi.org/project/google-i18n-address/";
homepage = "https://github.com/mirumee/google-i18n-address";
maintainers = with maintainers; [ SuperSandro2000 ];
license = licenses.bsd3;
};

Loading…
Cancel
Save