blob: d949207728e23795963bde9f052f47908cbb9844 (
about) (
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
35
36
|
{
lib,
buildPythonPackage,
fetchFromGitHub,
hatchling,
requests,
}:
buildPythonPackage rec {
pname = "falconpy";
version = "1.4.8";
pyproject = true;
src = fetchFromGitHub {
owner = "CrowdStrike";
repo = "falconpy";
tag = "v${version}";
hash = "sha256-tl/+mYilGFGxq9gJcu9tmm6wenF14gIP0gB+HAXQh0o=";
};
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/${src.tag}";
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ levigross ];
};
}
|