Skip to content

Commit

Permalink
python3Packages.lark-oapi: init at 1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
yoctocell committed Nov 13, 2024
1 parent c0f0625 commit 58b63c0
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pkgs/development/python-modules/lark-oapi/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
lib,
buildPythonPackage,
fetchPypi,
requests,
requests_toolbelt,
pycryptodome,
websockets,
protobuf3,
httpx,
}:

buildPythonPackage rec {
pname = "lark-oapi";
version = "1.3.6";
format = "setuptools";

src = fetchPypi {
inherit pname version;
hash = "sha256-jhis9H7z94KCJy2EM79Hy44ouDnmSIXirJ7fOCZA2G8=";
};

dependencies = [
requests
requests_toolbelt
pycryptodome
websockets
protobuf3
httpx
];

meta = with lib; {
homepage = "https://github.com/larksuite/oapi-sdk-python";
description = "Larksuite development interface SDK";
license = licenses.mit;
maintainers = with maintainers; [ yoctocell ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6998,6 +6998,8 @@ self: super: with self; {

lark = callPackage ../development/python-modules/lark { };

lark-oapi = callPackage ../development/python-modules/lark-oapi { };

laspy = callPackage ../development/python-modules/laspy { };

laszip = callPackage ../development/python-modules/laszip {
Expand Down

0 comments on commit 58b63c0

Please sign in to comment.