1
0

package fieldpoc and mitel-ommclient2

This commit is contained in:
Ember 'n0emis' Keske
2022-07-07 21:41:55 +02:00
parent 01560fbcad
commit 61b10153a9
6 changed files with 70 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ lib, buildPythonPackage, hatchling, rsa }:
buildPythonPackage rec {
pname = "mitel-ommclient2";
version = "0.0.1";
src = fetchGit {
url = "https://git.clerie.de/clerie/mitel_ommclient2.git";
ref = "main";
rev = "f05ffdd86d7e0694fcea573e8ba246a59cd99bdc";
};
format = "pyproject";
buildInputs = [ hatchling ];
propagatedBuildInputs = [ rsa ];
pythonImportsCheck = [ "mitel_ommclient2" ];
}