at master 759 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchFromGitHub, 5 hatchling, 6 requests, 7}: 8 9buildPythonPackage rec { 10 pname = "falconpy"; 11 version = "1.5.4"; 12 pyproject = true; 13 14 src = fetchFromGitHub { 15 owner = "CrowdStrike"; 16 repo = "falconpy"; 17 tag = "v${version}"; 18 hash = "sha256-m/pW9M2HXTtu42UIOCq7J1lr+y9mc3N74lD+qaCjaVE="; 19 }; 20 21 build-system = [ hatchling ]; 22 23 dependencies = [ 24 requests 25 ]; 26 27 pythonImportsCheck = [ "falconpy" ]; 28 29 meta = { 30 description = "CrowdStrike Falcon SDK for Python"; 31 homepage = "https://github.com/CrowdStrike/falconpy"; 32 changelog = "https://github.com/CrowdStrike/falconpy/releases/tag/${src.tag}"; 33 license = lib.licenses.unlicense; 34 maintainers = with lib.maintainers; [ levigross ]; 35 }; 36}