Commit 14ab9e3c authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent 9aa0bddf
Loading
Loading
Loading
Loading
+2 −7
Original line number Diff line number Diff line
@@ -20,14 +20,14 @@

buildPythonPackage rec {
  pname = "sparse";
  version = "0.15.5";
  version = "0.16.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pydata";
    repo = "sparse";
    tag = version;
    hash = "sha256-W4rcq7G/bQsT9oTLieOzWNst5LnIAelRMbm+uUPeQgs=";
    hash = "sha256-ChSEb+IwzutDgYBJxhlunRaF8VvkLHW/ae5RdrljWj0=";
  };

  build-system = [
@@ -56,10 +56,5 @@ buildPythonPackage rec {
    downloadPage = "https://github.com/pydata/sparse/releases/tag/${version}";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ GaetanLepage ];
    badPlatforms = [
      # Most tests fail with: Fatal Python error: Segmentation fault
      # numba/typed/typedlist.py", line 344 in append
      "aarch64-linux"
    ];
  };
}