python3Packages.splunk-sdk: init at 2.1.0
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
setuptools,
|
||||
deprecation,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "splunk-sdk";
|
||||
version = "2.1.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "splunk";
|
||||
repo = "splunk-sdk-python";
|
||||
tag = version;
|
||||
hash = "sha256-N+QQ4DSkx7yakROhcJ2ISXPWFa7BXDeSUULNquhDPrg=";
|
||||
};
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
dependencies = [ deprecation ];
|
||||
|
||||
pythonImportsCheck = [ "splunklib" ];
|
||||
|
||||
meta = {
|
||||
description = "The 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 ];
|
||||
};
|
||||
}
|
||||
@@ -15233,6 +15233,8 @@ self: super: with self; {
|
||||
|
||||
splinter = callPackage ../development/python-modules/splinter { };
|
||||
|
||||
splunk-sdk = callPackage ../development/python-modules/splunk-sdk { };
|
||||
|
||||
spotifyaio = callPackage ../development/python-modules/spotifyaio { };
|
||||
|
||||
spotipy = callPackage ../development/python-modules/spotipy { };
|
||||
|
||||
Reference in New Issue
Block a user