blob: 47e58998ff8689ef4e99859067f96dbe5fe4d5bd (
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.7";
pyproject = true;
src = fetchFromGitHub {
owner = "CrowdStrike";
repo = "falconpy";
tag = "v${version}";
hash = "sha256-Ka1QVDXbUJQjCwGMsvMrItPiE88tgVcuz/iaXhjctSQ=";
};
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 ];
};
}
|