python3Packages.splunk-sdk: init at 2.1.0

This commit is contained in:
Levi Gross
2024-12-12 22:01:18 -05:00
parent df2fffe820
commit ad253f9d67
2 changed files with 36 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -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 { };