2022-07-07 21:41:55 +02:00
|
|
|
{ lib, buildPythonApplication, hatchling, mitel-ommclient2, sqlalchemy, ywsd, diffsync }:
|
|
|
|
|
|
|
|
buildPythonApplication rec {
|
|
|
|
pname = "fieldpoc";
|
|
|
|
version = "0.11.0";
|
|
|
|
|
|
|
|
src = fetchGit {
|
2022-07-10 14:19:42 +02:00
|
|
|
url = "https://git.n0emis.eu/n0emis/fieldpoc.git";
|
2022-07-07 21:41:55 +02:00
|
|
|
ref = "main";
|
2022-07-10 14:19:42 +02:00
|
|
|
rev = "d6d664b4690189a7ed54be65ceef8cb3d79a6bfb";
|
2022-07-07 21:41:55 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
format = "pyproject";
|
|
|
|
|
|
|
|
buildInputs = [ hatchling ];
|
|
|
|
propagatedBuildInputs = [ mitel-ommclient2 sqlalchemy ywsd diffsync ];
|
|
|
|
}
|