python312Packages.python-ldap: disable on python 3.12
This commit is contained in:
parent
ac34158a82
commit
00d992d044
1 changed files with 2 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
, stdenv
|
, stdenv
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, pythonAtLeast
|
||||||
, pythonOlder
|
, pythonOlder
|
||||||
|
|
||||||
# build-system
|
# build-system
|
||||||
|
@ -24,7 +25,7 @@ buildPythonPackage rec {
|
||||||
version = "3.4.4";
|
version = "3.4.4";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.6";
|
disabled = pythonOlder "3.6" || pythonAtLeast "3.12"; # requires distutils
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "python-ldap";
|
owner = "python-ldap";
|
||||||
|
|
Loading…
Reference in a new issue