mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
python3Packages.kubernetes: fix aarch64 darwin build
This commit is contained in:
parent
cd91a151ef
commit
f1c86977b3
1 changed files with 6 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
|
@ -54,6 +55,11 @@ buildPythonPackage rec {
|
|||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = lib.optionals (stdenv.isDarwin && stdenv.isAarch64) [
|
||||
# AssertionError: <class 'urllib3.poolmanager.ProxyManager'> != <class 'urllib3.poolmanager.Poolmanager'>
|
||||
"test_rest_proxycare"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Kubernetes python client";
|
||||
homepage = "https://github.com/kubernetes-client/python";
|
||||
|
|
Loading…
Reference in a new issue