python3Packages.python-ldap: 3.4.2 -> 3.4.3

The newer version has not been published to PyPi in two days, so Git
seems to be the more reliable channel to pull this package from.
This commit is contained in:
Martin Weinelt 2022-09-18 02:18:59 +02:00 committed by Sandro Jäckel
parent 5b1dd91117
commit d77eab14fe
No known key found for this signature in database
GPG key ID: B1763F8651144063

View file

@ -1,7 +1,7 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, fetchFromGitHub
, pyasn1
, pyasn1-modules
, pythonAtLeast
@ -13,12 +13,14 @@
buildPythonPackage rec {
pname = "python-ldap";
version = "3.4.2";
version = "3.4.3";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-sWRwoJg6rwmgD/uPQLaaJEbz0L5jmiKSVrzjgfyyaPc=";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "refs/tags/python-ldap-${version}";
hash = "sha256-/ehvSs2qjuTPhaaOP0agPbWyyRugBpUlPq/Ny9t2C58=";
};
buildInputs = [