mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
Merge pull request #232840 from fabaff/pims-fix
python310Packages.pims: ignore also PendingDeprecationWarning
This commit is contained in:
commit
af2e1ca0e5
@ -40,7 +40,7 @@ buildPythonPackage rec {
|
||||
|
||||
pytestFlagsArray = [
|
||||
"-W"
|
||||
"ignore::DeprecationWarning"
|
||||
"ignore::Warning"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
@ -48,11 +48,16 @@ buildPythonPackage rec {
|
||||
"TestVideo_ImageIO"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
# AssertionError: Tuples differ: (377, 505, 4) != (384, 512, 4)
|
||||
"pims/tests/test_display.py"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python Image Sequence: Load video and sequential images in many formats with a simple, consistent interface";
|
||||
description = "Module to load video and sequential images in various formats";
|
||||
homepage = "https://github.com/soft-matter/pims";
|
||||
changelog = "https://github.com/soft-matter/pims/releases/tag/v${version}";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ costrouc ];
|
||||
broken = true;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user