Unverified Commit e036b0eb authored by natsukium's avatar natsukium
Browse files

python311Packages.nbmerge: remove nose

parent fcef8d5b
Loading
Loading
Loading
Loading
+5 −8
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@
  fetchFromGitHub,
  setuptools,
  nbformat,
  nose,
  pytestCheckHook,
}:

buildPythonPackage rec {
@@ -19,20 +19,17 @@ buildPythonPackage rec {
    hash = "sha256-Uqs/SO/AculHCFYcbjW08kLQX5GSU/eAwkN2iy/vhLM=";
  };

  patches = [ ./pytest-compatibility.patch ];

  nativeBuildInputs = [ setuptools ];

  propagatedBuildInputs = [ nbformat ];

  nativeCheckInputs = [ nose ];

  checkPhase = ''
    runHook preCheck
  nativeCheckInputs = [ pytestCheckHook ];

  postCheck = ''
    patchShebangs .
    nosetests -v
    PATH=$PATH:$out/bin ./cli_tests.sh

    runHook postCheck
  '';

  pythonImportsCheck = [ "nbmerge" ];
+19 −0
Original line number Diff line number Diff line
diff --git a/tests/test_merge.py b/tests/test_merge.py
index 06ee559..9d7b1af 100644
--- a/tests/test_merge.py
+++ b/tests/test_merge.py
@@ -1,3 +1,4 @@
+import io
 import os
 import sys
 import unittest
@@ -21,8 +22,7 @@ def file_names_from(file_paths):
 
 class TestMerge(unittest.TestCase):
     def setUp(self):
-        if not hasattr(sys.stdout, "getvalue"):
-            self.fail("need to run in buffered mode")
+        sys.stdout = io.StringIO()
 
     def _validate_merged_three(self, merged):
         self.assertEqual(len(merged.cells), 6)