Unverified Commit c68bae31 authored by Emily's avatar Emily Committed by GitHub
Browse files

Merge pull request #330882 from Sigmanificient/neo

python312Packages.neo: drop nose dependency
parents 928c7787 3dea5add
Loading
Loading
Loading
Loading
+12 −5
Original line number Diff line number Diff line
@@ -2,12 +2,14 @@
  lib,
  buildPythonPackage,
  fetchPypi,
  nose,
  numpy,
  packaging,
  quantities,
  pythonOlder,
  setuptools,
  pytestCheckHook,
  pillow,
  which,
}:

buildPythonPackage rec {
@@ -30,11 +32,16 @@ buildPythonPackage rec {
    quantities
  ];

  nativeCheckInputs = [ nose ];
  nativeCheckInputs = [
    pytestCheckHook
    pillow
    which
  ];

  checkPhase = ''
    nosetests --exclude=iotest
  '';
  disabledTestPaths = [
    # Requires network and export HOME dir
    "neo/test/rawiotest/test_maxwellrawio.py"
  ];

  pythonImportsCheck = [ "neo" ];