Merge pull request #201399 from SuperSandro2000/snakebite

python310Packages.snakebite: cleanup unused checkInputs
This commit is contained in:
Fabian Affolter
2022-11-19 11:15:55 +01:00
committed by GitHub
@@ -1,8 +1,6 @@
{ 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 ];
};
}