mirror of
https://github.com/chatmail/core.git
synced 2026-09-22 13:01:21 +03:00
12 lines
299 B
Nix
12 lines
299 B
Nix
{ pkgs, version }:
|
|
pkgs.python3Packages.buildPythonPackage {
|
|
pname = "deltachat-rpc-client";
|
|
inherit version;
|
|
src = pkgs.lib.cleanSource ../deltachat-rpc-client;
|
|
format = "pyproject";
|
|
propagatedBuildInputs = [
|
|
pkgs.python3Packages.setuptools
|
|
pkgs.python3Packages.imap-tools
|
|
];
|
|
}
|