Unverified Commit cbdd0c4f authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

python3Packages.datashader: fix build (#497939)

parents 8ecdf04f 25cd5546
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -59,6 +59,10 @@ buildPythonPackage rec {
    writableTmpDirAsHomeHook
  ];

  disabledTestPaths = [
    "scripts/download_data.py"
  ];

  pythonImportsCheck = [ "datashader" ];

  meta = {
@@ -67,6 +71,9 @@ buildPythonPackage rec {
    homepage = "https://datashader.org";
    changelog = "https://github.com/holoviz/datashader/blob/${src.tag}/CHANGELOG.rst";
    license = lib.licenses.bsd3;
    maintainers = with lib.maintainers; [ nickcao ];
    maintainers = with lib.maintainers; [
      nickcao
      locnide
    ];
  };
}