python313Packages.ldap3: fix dist version (#432263)

Changed files
+3 -1
pkgs
development
python-modules
ldap3
+3 -1
pkgs/development/python-modules/ldap3/default.nix
···
prePatch = ''
# patch fails to apply because of line endings
dos2unix ldap3/utils/asn1.py
+
substituteInPlace _version.json \
+
--replace-fail '"version": "2.9",' '"version": "${version}",'
'';
patches = [
···
meta = with lib; {
homepage = "https://github.com/cannatag/ldap3";
description = "Strictly RFC 4510 conforming LDAP V3 pure Python client library";
-
license = licenses.lgpl3;
+
license = licenses.lgpl3Plus;
maintainers = [ ];
};
}