summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ldap3
diff options
context:
space:
mode:
authornixpkgs-ci[bot] <190413589+nixpkgs-ci[bot]@users.noreply.github.com>2025-08-11 00:24:16 +0000
committerGitHub <noreply@github.com>2025-08-11 00:24:16 +0000
commitef3238a84cc5d5b60de2aec6ecc7d434c8da1b5c (patch)
tree5605011b7d6dad28bac39254aa1488cadddac7c3 /pkgs/development/python-modules/ldap3
parenthaskellPackages.cabal2nix-unstable: 2025-06-14 -> 2025-08-10 (diff)
parentbalena-cli: 22.1.5 -> 22.2.4 (#432566) (diff)
downloadnixpkgs-origin/haskell-updates.tar.gz
Merge b1b0d690fbb0e4a2fa029ab625a3b1646487fee1 into haskell-updatesorigin/haskell-updates
Diffstat (limited to 'pkgs/development/python-modules/ldap3')
-rw-r--r--pkgs/development/python-modules/ldap3/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/ldap3/default.nix b/pkgs/development/python-modules/ldap3/default.nix
index 0f5aa1bf18ae..4d4b6997409a 100644
--- a/pkgs/development/python-modules/ldap3/default.nix
+++ b/pkgs/development/python-modules/ldap3/default.nix
@@ -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 = [ ];
};
}