Files
nixpkgs/pkgs/development/python-modules/phonenumbers/default.nix
T

19 lines
588 B
Nix
Raw Normal View History

2017-08-25 20:40:46 +01:00
{ stdenv, fetchPypi, buildPythonPackage }:
2017-04-11 15:39:17 +02:00
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "phonenumbers";
version = "8.12.10";
2017-04-11 15:39:17 +02:00
2017-08-25 20:40:46 +01:00
src = fetchPypi {
inherit pname version;
sha256 = "d6e108352e7113c55cf0d92f8aede876a379580e46a3b9c2e779dc3601f11863";
2017-08-25 20:40:46 +01: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";
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 ];
};
}