Unverified Commit 2fb6f9fb authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #201399 from SuperSandro2000/snakebite

python310Packages.snakebite: cleanup unused checkInputs
parents ff050a7a 493a0880
Loading
Loading
Loading
Loading
+6 −9
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchPypi
, tox
, virtualenv
, protobuf
}:

@@ -15,11 +13,6 @@ buildPythonPackage rec {
    sha256 = "085238b4944cb9c658ee62d5794de936ac3d0c337c504b2cc86424a205ae978a";
  };

  checkInputs = [
    tox
    virtualenv
  ];

  propagatedBuildInputs = [
    protobuf
  ];
@@ -29,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 ];
  };
}