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

20 lines
646 B
Nix
Raw Normal View History

2017-04-11 15:39:17 +02:00
{ stdenv, fetchurl, buildPythonPackage }:
buildPythonPackage rec {
2017-05-27 11:25:35 +02:00
pname = "phonenumbers";
2017-06-19 13:43:19 +02:00
version = "8.5.1";
2017-05-27 11:25:35 +02:00
name = "${pname}-${version}";
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";
license = stdenv.lib.licenses.asl20;
maintainers = with stdenv.lib.maintainers; [ fadenb ];
};
src = fetchurl {
url = "mirror://pypi/p/phonenumbers/${name}.tar.gz";
2017-06-19 13:43:19 +02:00
sha256 = "b7d1a5832650fad633d1e4159873788ebfb15e053292c20ab9f5119a574f3a67";
2017-04-11 15:39:17 +02:00
};
}