summary refs log tree commit diff
path: root/pkgs/development/python-modules/phonenumbers/default.nix
blob: a7ab39c7c1c9c5de6d55533e6ed6d76d375f7a50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "phonenumbers";
  version = "8.12.25";

  src = fetchPypi {
    inherit pname version;
    sha256 = "de4db4e2582f989a9cbae54364a647b24a72a7b0126be50d8356cf02217dc6c9";
  };

  meta = with lib; {
    description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers";
    homepage    = "https://github.com/daviddrysdale/python-phonenumbers";
    license     = licenses.asl20;
    maintainers = with maintainers; [ fadenb ];
  };
}