Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions pkgs/development/python-modules/compressai/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,

Expand Down Expand Up @@ -93,6 +94,12 @@ buildPythonPackage rec {
"test_find_close"
];

disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [
# Cause pytest to hang on Darwin after the tests are done
"tests/test_eval_model.py"
"tests/test_train.py"
];

meta = {
description = "PyTorch library and evaluation platform for end-to-end compression research";
homepage = "https://github.com/InterDigitalInc/CompressAI";
Expand Down