depot/third_party/nixpkgs/pkgs/development/python-modules/hdfs/default.nix
Default email a0cb138ada Project import generated by Copybara.
GitOrigin-RevId: a100acd7bbf105915b0004427802286c37738fef
2023-02-02 18:25:31 +00:00

36 lines
746 B
Nix

{ buildPythonPackage
, docopt
, fastavro
, fetchFromGitHub
, lib
, nose
, pytestCheckHook
, requests
, six
}:
buildPythonPackage rec {
pname = "hdfs";
# See https://github.com/mtth/hdfs/issues/176.
version = "2.5.8";
src = fetchFromGitHub {
owner = "mtth";
repo = pname;
rev = version;
hash = "sha256-94Q3IUoX1Cb+uRqvsfpVZJ1koJSx5cQ3/XpYJ0gkQNU=";
};
propagatedBuildInputs = [ docopt requests six ];
nativeCheckInputs = [ fastavro nose pytestCheckHook ];
pythonImportsCheck = [ "hdfs" ];
meta = with lib; {
description = "Python API and command line interface for HDFS";
homepage = "https://github.com/mtth/hdfs";
license = licenses.mit;
maintainers = with maintainers; [ samuela ];
};
}