2021-01-24 01:29:22 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2017-04-11 15:39:17 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "phonenumbers";
|
2021-02-20 10:09:12 +01:00
|
|
|
version = "8.12.18";
|
2017-04-11 15:39:17 +02:00
|
|
|
|
2017-08-25 20:40:46 +01:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-02-20 10:09:12 +01:00
|
|
|
sha256 = "0aa0f5e1382d292a7ff2f8bc08673126521461c7f908e0220756449a734d8fef";
|
2017-08-25 20:40:46 +01:00
|
|
|
};
|
|
|
|
|
2021-01-24 01:29:22 +01:00
|
|
|
meta = with lib; {
|
2017-04-11 15:39:17 +02:00
|
|
|
description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers";
|
2020-03-03 06:36:33 +00:00
|
|
|
homepage = "https://github.com/daviddrysdale/python-phonenumbers";
|
2021-01-24 01:29:22 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ fadenb ];
|
2017-04-11 15:39:17 +02:00
|
|
|
};
|
|
|
|
}
|