15 buildPythonPackage rec {
19 disabled = pythonOlder "3.8";
24 src = fetchFromGitHub {
26 repo = "python-zulip-api";
28 hash = "sha256-YnNXduZ2KOjRHGwhojkqpMP2mwhflk8/f4FVZL8NvHU=";
30 sourceRoot = "${src.name}/zulip";
32 nativeBuildInputs = [ setuptools ];
34 propagatedBuildInputs = [
39 ] ++ requests.optional-dependencies.security;
46 pythonImportsCheck = [ "zulip" ];
49 description = "Bindings for the Zulip message API";
50 homepage = "https://github.com/zulip/python-zulip-api";
51 license = licenses.asl20;
52 maintainers = with maintainers; [ dotlambda ];