python3Packages.falconpy: init at v1.4.6 (#365455)

This commit is contained in:
Alexander Sieg
2024-12-18 15:36:59 +01:00
committed by GitHub
2 changed files with 38 additions and 0 deletions
@@ -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 ];
};
}
+2
View File
@@ -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 { };