python3Packages.falconpy: init at v1.4.6 (#365455)
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
hatchling,
|
||||
requests,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "falconpy";
|
||||
version = "v1.4.6";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "CrowdStrike";
|
||||
repo = "falconpy";
|
||||
tag = version;
|
||||
hash = "sha256-boebQI//NenEqctQbEdxiXKU3/07C6jVzWVHecmJjPk=";
|
||||
};
|
||||
|
||||
build-system = [ hatchling ];
|
||||
|
||||
dependencies = [
|
||||
requests
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "falconpy" ];
|
||||
|
||||
meta = {
|
||||
description = "The CrowdStrike Falcon SDK for Python";
|
||||
homepage = "https://github.com/CrowdStrike/falconpy";
|
||||
changelog = "https://github.com/CrowdStrike/falconpy/releases/tag/${version}";
|
||||
license = lib.licenses.unlicense;
|
||||
maintainers = with lib.maintainers; [ levigross ];
|
||||
};
|
||||
}
|
||||
@@ -4422,6 +4422,8 @@ self: super: with self; {
|
||||
|
||||
falcon = callPackage ../development/python-modules/falcon { };
|
||||
|
||||
falconpy = callPackage ../development/python-modules/falconpy { };
|
||||
|
||||
faraday-agent-parameters-types = callPackage ../development/python-modules/faraday-agent-parameters-types { };
|
||||
|
||||
faraday-plugins = callPackage ../development/python-modules/faraday-plugins { };
|
||||
|
||||
Reference in New Issue
Block a user