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

19 lines
584 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";
2018-06-21 07:37:17 +02:00
version = "8.9.8";
2017-04-11 15:39:17 +02:00
2017-08-25 20:40:46 +01:00
src = fetchPypi {
inherit pname version;
2018-06-21 07:37:17 +02:00
sha256 = "7813a9d45f0d1386a23552072af20a3ef34fa34f76eeb9033743ff083f9551e1";
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";
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 ];
};
}