pythonPackages.google-i18n-address: disable on python 3.9
This commit is contained in:
parent
a9f1f7f417
commit
f6c12795e8
1 changed files with 3 additions and 2 deletions
|
@ -1,8 +1,9 @@
|
||||||
{ buildPythonPackage, fetchPypi, lib, requests, pytestCheckHook, mock }:
|
{ buildPythonPackage, fetchPypi, pythonAtLeast, lib, requests, pytestCheckHook, mock }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "google-i18n-address";
|
pname = "google-i18n-address";
|
||||||
version = "2.4.0";
|
version = "2.4.0";
|
||||||
|
disabled = pythonAtLeast "3.9";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
|
@ -15,7 +16,7 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Google's i18n address data packaged for Python";
|
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 ];
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue