summary refs log tree commit diff
path: root/pkgs/development/python-modules/ldap3
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-08-13 09:26:26 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-08-25 07:38:22 +0200
commit9ee7e0208ec54cd442cc8d19368255189fccb910 (patch)
tree5b1297661a7ece758396cf35da8ab0b235ee2958 /pkgs/development/python-modules/ldap3
parent3c357901f27753e1cb0b49e4f1dd8483fc70f9c6 (diff)
downloadnixlib-9ee7e0208ec54cd442cc8d19368255189fccb910.tar
nixlib-9ee7e0208ec54cd442cc8d19368255189fccb910.tar.gz
nixlib-9ee7e0208ec54cd442cc8d19368255189fccb910.tar.bz2
nixlib-9ee7e0208ec54cd442cc8d19368255189fccb910.tar.lz
nixlib-9ee7e0208ec54cd442cc8d19368255189fccb910.tar.xz
nixlib-9ee7e0208ec54cd442cc8d19368255189fccb910.tar.zst
nixlib-9ee7e0208ec54cd442cc8d19368255189fccb910.zip
python: ldap3: 2.5 -> 2.5.1
Diffstat (limited to 'pkgs/development/python-modules/ldap3')
-rw-r--r--pkgs/development/python-modules/ldap3/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/ldap3/default.nix b/pkgs/development/python-modules/ldap3/default.nix
index 24690d9d5302..3735cbf58523 100644
--- a/pkgs/development/python-modules/ldap3/default.nix
+++ b/pkgs/development/python-modules/ldap3/default.nix
@@ -1,12 +1,12 @@
 { stdenv, fetchPypi, buildPythonPackage, gssapi, pyasn1 }:
 
 buildPythonPackage rec {
-  version = "2.5";
+  version = "2.5.1";
   pname = "ldap3";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "55078bbc981f715a8867b4c040402627fdfccf5664e0277a621416559748e384";
+    sha256 = "cc09951809678cfb693a13a6011dd2d48ada60a52bd80cb4bd7dcc55ee7c02fd";
   };
 
   buildInputs = [ gssapi ];