mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
20b42a887b
According to upstream > The phonenumberslite version of the library does not include the > geocoder, carrier and timezone packages, which can be useful if you > have problems installing the main phonenumbers library due to > space/memory limitations. We want to ship a single version of the library to avoid dependency conflicts. This is thus only a wrapper of the non-lite version.
15 lines
317 B
Nix
15 lines
317 B
Nix
{
|
|
mkPythonMetaPackage,
|
|
phonenumbers,
|
|
}:
|
|
|
|
mkPythonMetaPackage {
|
|
pname = "phonenumberslite";
|
|
inherit (phonenumbers) version;
|
|
dependencies = [ phonenumbers ];
|
|
optional-dependencies = phonenumbers.optional-dependencies or { };
|
|
meta = {
|
|
inherit (phonenumbers.meta) changelog description homepage;
|
|
};
|
|
}
|