Merge pull request #264463 from GaetanLepage/objax

python311Packages.objax: disable tests to fix build
This commit is contained in:
OTABI Tomoya 2023-11-06 21:32:37 +09:00 committed by GitHub
commit 0dbb76220d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,17 @@
{ lib
, fetchFromGitHub
, buildPythonPackage
, jax
, fetchFromGitHub
, fetchpatch
, jaxlib
, jax
, numpy
, parameterized
, pillow
, scipy
, tensorboard
, keras
, pytestCheckHook
, tensorflow
}:
buildPythonPackage rec {
@ -17,10 +21,17 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "google";
repo = "objax";
rev = "v${version}";
rev = "refs/tags/v${version}";
hash = "sha256-1/XmxFZfU+XMD0Mlcv4xTUYZDwltAx1bZOlPuKWQQC0=";
};
patches = [
(fetchpatch { # https://github.com/google/objax/pull/266
url = "https://github.com/google/objax/pull/266/commits/a1bcb71ebd92c94fec98222349d7cd57048e541d.patch";
hash = "sha256-MO9/LAxbghjhRU8sbYWm3xa4RPuU+5m74YU3n3hJ09s=";
})
];
# Avoid propagating the dependency on `jaxlib`, see
# https://github.com/NixOS/nixpkgs/issues/156767
buildInputs = [
@ -40,6 +51,25 @@ buildPythonPackage rec {
"objax"
];
# This is necessay to ignore the presence of two protobufs version (tensorflow is bringing an
# older version).
catchConflicts = false;
nativeCheckInputs = [
keras
pytestCheckHook
tensorflow
];
pytestFlagsArray = [
"tests/*.py"
];
disabledTests = [
# Test requires internet access for prefetching some weights
"test_pretrained_keras_weight_0_ResNet50V2"
];
meta = with lib; {
description = "Objax is a machine learning framework that provides an Object Oriented layer for JAX.";
homepage = "https://github.com/google/objax";