depot/third_party/nixpkgs/pkgs/development/python-modules/google-i18n-address/default.nix
Default email 2969ca571a Project import generated by Copybara.
GitOrigin-RevId: 257cbbcd3ab7bd96f5d24d50adc807de7c82e06d
2021-01-09 11:05:03 +01:00

22 lines
618 B
Nix

{ buildPythonPackage, fetchPypi, lib, requests, pytestCheckHook, mock }:
buildPythonPackage rec {
pname = "google-i18n-address";
version = "2.4.0";
src = fetchPypi {
inherit pname version;
sha256 = "8454a58f254a29988b8d1ca9ab663fd28a1f392a3d29b844d8824807db6333d7";
};
propagatedBuildInputs = [ requests ];
checkInputs = [ pytestCheckHook mock ];
meta = with lib; {
description = "Google's i18n address data packaged for Python";
homepage = "https://pypi.org/project/google-i18n-address/";
maintainers = with maintainers; [ SuperSandro2000 ];
license = licenses.bsd3;
};
}