f27fe449b1
PyPI links to a source tarball at PythonHosted that has an empty ldap3/protocol/sasl/digestMd5.py while the linked egg file has a non-empty file (and the upstream GitHub repository has a non-empty file that hasn't even had a non-comment change for some time.
32 lines
865 B
Nix
32 lines
865 B
Nix
{ stdenv, fetchPypi, fetchFromGitHub, buildPythonPackage, gssapi, pyasn1 }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "2.5.2";
|
|
pname = "ldap3";
|
|
|
|
## This should work, but 2.5.2 has a weird tarball with empty source files
|
|
## where upstream repository has non-empty ones
|
|
# src = fetchPypi {
|
|
# inherit pname version;
|
|
# sha256 = "063dacy01mphc3n7z2qc2avykjavqm1gllkbvy7xzw5ihlqwhrrz";
|
|
# };
|
|
src = fetchFromGitHub {
|
|
owner = "cannatag";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0p5l4bhy6j2nvvlxz5zvznbaqb72x791v9la2jr2wpwr60mzz9hw";
|
|
};
|
|
|
|
buildInputs = [ gssapi ];
|
|
|
|
propagatedBuildInputs = [ pyasn1 ];
|
|
|
|
doCheck = false; # requires network
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://pypi.python.org/pypi/ldap3;
|
|
description = "A strictly RFC 4510 conforming LDAP V3 pure Python client library";
|
|
license = licenses.lgpl3;
|
|
};
|
|
}
|