Unverified Commit 91883328 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python313Packages.ldap3: fix dist version (#432263)

parents 1c6512b4 cc12b8ff
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -24,6 +24,8 @@ buildPythonPackage rec {
  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 = [
@@ -52,7 +54,7 @@ buildPythonPackage rec {
  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 = [ ];
  };
}