{ lib, buildPythonPackage, fetchFromGitHub, hatchling, requests, }: buildPythonPackage rec { pname = "falconpy"; version = "1.5.2"; pyproject = true; src = fetchFromGitHub { owner = "CrowdStrike"; repo = "falconpy"; tag = "v${version}"; hash = "sha256-neZ0V0OpX1GTchkLdE+hKMRl9jKnJ/OCtXY0q1eAxzA="; }; 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 ]; }; }