ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / google-i18n-address / default.nix
blob828d9ff5eb2b681075f1845615c9c7b0e0dd0440
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , requests
5 , pytestCheckHook
6 }:
8 buildPythonPackage rec {
9   pname = "google-i18n-address";
10   version = "2.5.2";
12   src = fetchFromGitHub {
13     owner = "mirumee";
14     repo = "google-i18n-address";
15     rev = "refs/tags/${version}";
16     sha256 = "sha256-7t5sNpEVajdwcW8+xTNZQKZVgxhUzfbVbEVgn7JJ2MY=";
17   };
19   propagatedBuildInputs = [ requests ];
21   checkInputs = [ pytestCheckHook ];
23   pythonImportsCheck = [ "i18naddress" ];
25   meta = with lib; {
26     description = "Google's i18n address data packaged for Python";
27     homepage = "https://github.com/mirumee/google-i18n-address";
28     maintainers = with maintainers; [ SuperSandro2000 ];
29     license = licenses.bsd3;
30   };