mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-06 09:12:35 +03:00
20 lines
604 B
Nix
20 lines
604 B
Nix
{ stdenv, fetchPypi, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "phonenumbers";
|
|
version = "8.9.5";
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "09swdf3f9sdvqyyzkap93012m9fnhamizf42d5kzpdjwikvsfx8x";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|