pythonPackages.ldap3: switch src to fetchFromGitHub
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.
This commit is contained in:
parent
e6aa4d76ed
commit
f27fe449b1
@ -1,12 +1,20 @@
|
|||||||
{ stdenv, fetchPypi, buildPythonPackage, gssapi, pyasn1 }:
|
{ stdenv, fetchPypi, fetchFromGitHub, buildPythonPackage, gssapi, pyasn1 }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
version = "2.5.2";
|
version = "2.5.2";
|
||||||
pname = "ldap3";
|
pname = "ldap3";
|
||||||
|
|
||||||
src = fetchPypi {
|
## This should work, but 2.5.2 has a weird tarball with empty source files
|
||||||
inherit pname version;
|
## where upstream repository has non-empty ones
|
||||||
sha256 = "063dacy01mphc3n7z2qc2avykjavqm1gllkbvy7xzw5ihlqwhrrz";
|
# src = fetchPypi {
|
||||||
|
# inherit pname version;
|
||||||
|
# sha256 = "063dacy01mphc3n7z2qc2avykjavqm1gllkbvy7xzw5ihlqwhrrz";
|
||||||
|
# };
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "cannatag";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0p5l4bhy6j2nvvlxz5zvznbaqb72x791v9la2jr2wpwr60mzz9hw";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ gssapi ];
|
buildInputs = [ gssapi ];
|
||||||
|
Loading…
Reference in New Issue
Block a user