Skip to content

Commit 9a43511

Browse files
committed
treewide: replace pythonImportCheck(s) with pythonImportsCheck
1 parent f263f12 commit 9a43511

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

pkgs/development/python-modules/curated-transformers/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ buildPythonPackage rec {
2424

2525
# Unit tests are hard to use, since most tests rely on downloading
2626
# models from Hugging Face Hub.
27-
pythonImportCheck = [ "curated_transformers" ];
27+
pythonImportsCheck = [ "curated_transformers" ];
2828

2929
meta = with lib; {
3030
description = "PyTorch library of curated Transformer models and their composable components";

pkgs/development/python-modules/mergecal/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ buildPythonPackage rec {
3737
pytest-cov-stub
3838
];
3939

40-
pythonImportChecks = [ "mergecal" ];
40+
pythonImportsCheck = [ "mergecal" ];
4141

4242
meta = {
4343
homepage = "https://mergecal.readthedocs.io/en/latest/";

pkgs/development/python-modules/spacy-curated-transformers/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ buildPythonPackage rec {
3232

3333
# Unit tests are hard to use, since most tests rely on downloading
3434
# models from Hugging Face Hub.
35-
pythonImportCheck = [ "spacy_curated_transformers" ];
35+
pythonImportsCheck = [ "spacy_curated_transformers" ];
3636

3737
meta = with lib; {
3838
description = "spaCy entry points for Curated Transformers";

0 commit comments

Comments
 (0)