blob: a34fdcb4299f761c660cf692b7db3966dd27171f (
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
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
deprecation,
}:
buildPythonPackage rec {
pname = "splunk-sdk";
version = "2.1.1";
pyproject = true;
src = fetchFromGitHub {
owner = "splunk";
repo = "splunk-sdk-python";
tag = version;
hash = "sha256-+ae4/Q7Rx6K35RZuTOc/MDIgnX9hqswgZelnRvFiaRM=";
};
build-system = [ setuptools ];
dependencies = [ deprecation ];
pythonImportsCheck = [ "splunklib" ];
meta = {
description = "Splunk Enterprise Software Development Kit (SDK) for Python";
homepage = "https://github.com/splunk/splunk-sdk-python";
changelog = "https://github.com/splunk/splunk-sdk-python/releases/tag/${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ levigross ];
};
}
|