2017-08-25 21:40:46 +02:00
|
|
|
{ stdenv, fetchPypi, buildPythonPackage }:
|
2017-04-11 15:39:17 +02:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
2017-05-27 11:25:35 +02:00
|
|
|
pname = "phonenumbers";
|
2018-07-22 12:15:28 +02:00
|
|
|
version = "8.9.10";
|
2017-04-11 15:39:17 +02:00
|
|
|
|
2017-08-25 21:40:46 +02:00
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 12:15:28 +02:00
|
|
|
sha256 = "cbb8194814cc026f476132c38c507adbd459bc8ee99be39f421650ab1b986ed7";
|
2017-08-25 21:40:46 +02:00
|
|
|
};
|
|
|
|
|
2017-04-11 15:39:17 +02:00
|
|
|
meta = {
|
|
|
|
description = "Python version of Google's common library for parsing, formatting, storing and validating international phone numbers";
|
2017-09-10 18:08:26 +02:00
|
|
|
homepage = https://github.com/daviddrysdale/python-phonenumbers;
|
2017-04-11 15:39:17 +02:00
|
|
|
license = stdenv.lib.licenses.asl20;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ fadenb ];
|
|
|
|
};
|
|
|
|
}
|