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

20 lines
616 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";
2017-11-05 13:16:18 +01:00
version = "8.8.5";
2017-05-27 11:25:35 +02:00
name = "${pname}-${version}";
2017-04-11 15:39:17 +02:00
2017-08-25 20:40:46 +01:00
src = fetchPypi {
inherit pname version;
2017-11-05 13:16:18 +01:00
sha256 = "adb2dd985f875ac035bbdc6a1cc57e30834e106e2ff7899e09a1690b474c1774";
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 ];
};
}