Commit 1a1e595c authored by Harinn's avatar Harinn
Browse files

python3Packages.neo: 0.14.3 -> 0.14.4

parent d899006c
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -13,14 +13,14 @@

buildPythonPackage rec {
  pname = "neo";
  version = "0.14.3";
  version = "0.14.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "NeuralEnsemble";
    repo = "python-neo";
    tag = version;
    hash = "sha256-y2MGzIfF+KrEzdjUxiDaU1ZKBK5FksX1IBJdc9RvLhM=";
    hash = "sha256-VdT7PFSle8HxWfsPrrI+mHtsTO315+Sw0RGx8HSYtwk=";
  };

  build-system = [ setuptools ];
@@ -42,6 +42,11 @@ buildPythonPackage rec {
    "neo/test/rawiotest/test_maxwellrawio.py"
  ];

  disabledTests = [
    # numpy 2.x boolean index strictness regression
    "test__time_slice_deepcopy_data"
  ];

  pythonImportsCheck = [ "neo" ];

  meta = {