Unverified Commit 493a0880 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python310Packages.snakebite: add pythonImportsCheck

parent 0b72f509
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -22,13 +22,17 @@ buildPythonPackage rec {
      --replace "'argparse'" ""
  '';

  # tests require hadoop hdfs
  # Tests require hadoop hdfs
  doCheck = false;

  pythonImportsCheck = [
    "snakebite"
  ];

  meta = with lib; {
    description = "Pure Python HDFS client";
    homepage = "https://github.com/spotify/snakebite";
    license = licenses.asl20;
    maintainers = [ maintainers.costrouc ];
    maintainers = with maintainers; [ costrouc ];
  };
}