python312Packages.phonenumberslite: init at 8.13.39

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.
This commit is contained in:
Robert Schütz
2024-08-29 17:35:18 -07:00
parent 4a57be5e26
commit 20b42a887b
2 changed files with 16 additions and 0 deletions
@@ -0,0 +1,14 @@
{
mkPythonMetaPackage,
phonenumbers,
}:
mkPythonMetaPackage {
pname = "phonenumberslite";
inherit (phonenumbers) version;
dependencies = [ phonenumbers ];
optional-dependencies = phonenumbers.optional-dependencies or { };
meta = {
inherit (phonenumbers.meta) changelog description homepage;
};
}
+2
View File
@@ -10111,6 +10111,8 @@ self: super: with self; {
phonenumbers = callPackage ../development/python-modules/phonenumbers { };
phonenumberslite = callPackage ../development/python-modules/phonenumberslite { };
photutils = callPackage ../development/python-modules/photutils { };
pkgutil-resolve-name = callPackage ../development/python-modules/pkgutil-resolve-name { };