lol

Merge pull request #222819 from SuperSandro2000/matrix-ldap-c3d2

matrix-synapse.plugins.matrix-synapse-ldap3: add patch to read passwo…

authored by

Sandro and committed by
GitHub
9d1226bd eb34a225

+21 -2
+21 -2
pkgs/servers/matrix-synapse/plugins/ldap3.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, ldap3, ldaptor, matrix-synapse, pytestCheckHook, service-identity, setuptools, twisted }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchpatch 4 + , fetchPypi 5 + , ldap3 6 + , ldaptor 7 + , matrix-synapse 8 + , pytestCheckHook 9 + , service-identity 10 + , setuptools 11 + , twisted 12 + }: 2 13 3 14 buildPythonPackage rec { 4 15 pname = "matrix-synapse-ldap3"; ··· 10 21 sha256 = "sha256-s4jZVpNIbu9pra79D9noRGPVL+F7AhSgDvyqZptzy3Q="; 11 22 }; 12 23 24 + patches = [ 25 + # add support to read bind_password from file 26 + (fetchpatch { 27 + url = "https://github.com/matrix-org/matrix-synapse-ldap3/commit/c65e8cbd27a5cd935ce12e7c4b92143cdf795c86.patch"; 28 + sha256 = "sha256-0g150TW631cuupSRECXL9A261nj45HclDkHBUbKT7jE="; 29 + }) 30 + ]; 31 + 13 32 nativeBuildInputs = [ setuptools ]; 14 33 15 34 propagatedBuildInputs = [ service-identity ldap3 twisted ]; ··· 22 41 description = "LDAP3 auth provider for Synapse"; 23 42 homepage = "https://github.com/matrix-org/matrix-synapse-ldap3"; 24 43 license = licenses.asl20; 25 - maintainers = with maintainers; [ ]; 44 + maintainers = with maintainers; [ ] ++ teams.c3d2.members; 26 45 }; 27 46 }