blob: 2d8163d0dbf38ff4e96dc90e302c7001d71e6be2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{
buildPythonPackage,
docopt,
fastavro,
fetchFromGitHub,
lib,
pytestCheckHook,
requests,
setuptools,
six,
}:
buildPythonPackage rec {
pname = "hdfs";
version = "2.7.3";
pyproject = true;
src = fetchFromGitHub {
owner = "mtth";
repo = "hdfs";
tag = "v${version}";
hash = "sha256-Pm2E8hB0wbu7npi/sLt9D8jQsH69qNOHLji9CYqST/8=";
};
build-system = [ setuptools ];
dependencies = [
docopt
requests
six
];
nativeCheckInputs = [
fastavro
pytestCheckHook
];
pythonImportsCheck = [ "hdfs" ];
meta = {
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 = lib.licenses.mit;
maintainers = with lib.maintainers; [ samuela ];
mainProgram = "hdfscli";
};
}
|