pythonPackages.google-i18n-address: init at 2.3.4

This commit is contained in:
Maximilian Bosch 2019-01-10 02:24:03 +01:00 committed by worldofpeace
parent 44a80294f7
commit b58e41ebad
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ buildPythonPackage, fetchPypi, lib, requests, pytest, pytestcov, mock }:
buildPythonPackage rec {
pname = "google-i18n-address";
version = "2.3.4";
src = fetchPypi {
inherit pname version;
sha256 = "0f1j1lp9bmllkzhciw0lxi7ipm8w461n0p97mz9714br0cs9glm1";
};
propagatedBuildInputs = [ requests ];
checkInputs = [ pytest pytestcov mock ];
meta = with lib; {
description = "Google's i18n address data packaged for Python";
homepage = https://pypi.org/project/google-i18n-address/;
maintainers = with maintainers; [ ma27 ];
license = licenses.bsd3;
};
}

View file

@ -2621,6 +2621,8 @@ in {
google_cloud_websecurityscanner = callPackage ../development/python-modules/google_cloud_websecurityscanner { };
google-i18n-address = callPackage ../development/python-modules/google-i18n-address { };
google_resumable_media = callPackage ../development/python-modules/google_resumable_media { };
gpgme = toPythonModule (pkgs.gpgme.override {