Files
nixpkgs/pkgs/development/python-modules/phonenumbers/default.nix
R. RyanTM 4122f423ae python36Packages.phonenumbers: 8.9.16 -> 8.10.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.6-phonenumbers/versions
2018-11-18 05:50:03 -08:00

19 lines
573 B
Nix

{ stdenv, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "phonenumbers";
version = "8.10.0";
src = fetchPypi {
inherit pname version;
sha256 = "06nj00qlw2qx5wvwvg32izxq461lyrkif23giixaw2xmzzddzy0l";
};
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 ];
};
}