Merge pull request #244666 from GaetanLepage/para

python packages: Put nose in nativeCheckInputs
This commit is contained in:
Sandro
2023-07-23 18:53:47 +02:00
committed by GitHub
4 changed files with 20 additions and 16 deletions
@@ -1,8 +1,8 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pytestCheckHook
, nose
, pytestCheckHook
}:
buildPythonPackage rec {
@@ -16,9 +16,10 @@ buildPythonPackage rec {
hash = "sha256-3FIzG2djSZOPDdoYeKqs3obQjgHrFtyp0sdBwZakkHA=";
};
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ nose ];
nativeCheckInputs = [
nose
pytestCheckHook
];
pythonImportsCheck = [ "jsonable" ];
@@ -2,8 +2,8 @@
, buildPythonPackage
, fetchPypi
, jsonable
, pytestCheckHook
, nose
, pytestCheckHook
}:
buildPythonPackage rec {
@@ -17,9 +17,10 @@ buildPythonPackage rec {
propagatedBuildInputs = [ jsonable ];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ nose ];
nativeCheckInputs = [
nose
pytestCheckHook
];
disabledTests = [
"test_normalize_path_bad_extension"
@@ -4,8 +4,8 @@
, jsonschema
, mwcli
, mwtypes
, pytestCheckHook
, nose
, pytestCheckHook
}:
buildPythonPackage rec {
@@ -23,9 +23,10 @@ buildPythonPackage rec {
mwtypes
];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ nose ];
nativeCheckInputs = [
nose
pytestCheckHook
];
disabledTests = [
"test_page_with_discussion"
@@ -1,8 +1,8 @@
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, nose
, pytestCheckHook
}:
buildPythonPackage rec {
@@ -14,9 +14,10 @@ buildPythonPackage rec {
hash = "sha256-RsMjKunY6p2IbP0IzdESiSICvthkX0C2JVWXukz+8hc=";
};
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ nose ];
nativeCheckInputs = [
nose
pytestCheckHook
];
pythonImportsCheck = [ "para" ];