mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-27 18:30:13 +00:00
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:
committed by
Sandro Jäckel
parent
5b1dd91117
commit
d77eab14fe
@@ -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 = [
|
||||
|
||||
Reference in New Issue
Block a user