Skip to content
Closed
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ let

# Python packages don't have a checkPhase, only an installCheckPhase
doCheck = false;
doInstallCheck = attrs.doCheck or true;
doInstallCheck = doCheck;
nativeInstallCheckInputs = [
] ++ optionals (format' == "setuptools") [
# Longer-term we should get rid of this and require
Expand Down
2 changes: 2 additions & 0 deletions pkgs/development/python-modules/pytest-datadir/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ buildPythonPackage rec {

nativeCheckInputs = [ pytestCheckHook ];

doCheck = true;

pythonImportsCheck = [ "pytest_datadir" ];

meta = with lib; {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ buildPythonPackage rec {
})
];

doCheck = true;

nativeBuildInputs = [
flit-core
];
Expand Down