10 buildPythonPackage rec {
11 pname = "rocketchat-api";
15 src = fetchFromGitHub {
17 repo = "rocketchat_API";
18 rev = "refs/tags/${version}";
19 hash = "sha256-t1t0uksmdPTrksDF0K3/f3KxAv0fX2W8wDIIcWAPEVs=";
22 build-system = [ setuptools ];
29 pythonImportsCheck = [
31 "rocketchat_API.APIExceptions"
32 "rocketchat_API.APISections"
35 # requires running a Rocket.Chat server
39 description = "Python API wrapper for Rocket.Chat";
40 homepage = "https://github.com/jadolg/rocketchat_API";
41 license = lib.licenses.mit;
42 maintainers = with lib.maintainers; [ dotlambda ];