Files
nixpkgs/pkgs/development/python-modules/hdfs/default.nix
T
2024-05-22 17:32:03 +02:00

47 lines
850 B
Nix

{
buildPythonPackage,
docopt,
fastavro,
fetchFromGitHub,
lib,
nose,
pytestCheckHook,
requests,
six,
}:
buildPythonPackage rec {
pname = "hdfs";
version = "2.7.3";
format = "setuptools";
src = fetchFromGitHub {
owner = "mtth";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-Pm2E8hB0wbu7npi/sLt9D8jQsH69qNOHLji9CYqST/8=";
};
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";
changelog = "https://github.com/mtth/hdfs/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ samuela ];
};
}