1{ buildPythonPackage, fetchPypi, lib, requests, pytest, pytestcov, mock }:
2
3buildPythonPackage rec {
4 pname = "google-i18n-address";
5 version = "2.3.4";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "0f1j1lp9bmllkzhciw0lxi7ipm8w461n0p97mz9714br0cs9glm1";
10 };
11
12 propagatedBuildInputs = [ requests ];
13
14 checkInputs = [ pytest pytestcov mock ];
15
16 meta = with lib; {
17 description = "Google's i18n address data packaged for Python";
18 homepage = https://pypi.org/project/google-i18n-address/;
19 maintainers = with maintainers; [ ma27 ];
20 license = licenses.bsd3;
21 };
22}