mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
pythonPackages.google-i18n-address: init at 2.3.4
This commit is contained in:
parent
44a80294f7
commit
b58e41ebad
2 changed files with 24 additions and 0 deletions
|
@ -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;
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue