mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.fastmri: add missing test dependency
This commit is contained in:
parent
26026d7d95
commit
df9b11b953
1 changed files with 5 additions and 1 deletions
|
|
@ -22,6 +22,7 @@
|
|||
|
||||
# tests
|
||||
pytestCheckHook,
|
||||
requests,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
|
|
@ -66,7 +67,10 @@ buildPythonPackage (finalAttrs: {
|
|||
pandas
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ pytestCheckHook ];
|
||||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
requests
|
||||
];
|
||||
|
||||
disabledTests = lib.optionals (pythonAtLeast "3.14") [
|
||||
# AttributeError: '...' object has no attribute '__annotations__'.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue