summary refs log tree commit diff
path: root/pkgs/development/python-modules/google-i18n-address/default.nix
blob: d7bf6d082f8a258b9b2e1f615f5803aa7420645e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ buildPythonPackage, fetchPypi, lib, requests, pytest, pytestcov, mock }:

buildPythonPackage rec {
  pname = "google-i18n-address";
  version = "2.3.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1kkg3x92m40z0mw712z9apnrw08qsx0f9lj7lfgddkdbx4vd8v3w";
  };

  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; [ ];
    license = licenses.bsd3;
  };
}