18 lines
448 B
Nix
18 lines
448 B
Nix
|
{ lib, buildPythonApplication, hatchling, mitel-ommclient2, sqlalchemy, ywsd, diffsync }:
|
||
|
|
||
|
buildPythonApplication rec {
|
||
|
pname = "fieldpoc";
|
||
|
version = "0.11.0";
|
||
|
|
||
|
src = fetchGit {
|
||
|
url = "https://git.clerie.de/clerie/fieldpoc.git";
|
||
|
ref = "main";
|
||
|
rev = "c2ef36c5a7a31ea39f51c91c7ba76430f0aaa048";
|
||
|
};
|
||
|
|
||
|
format = "pyproject";
|
||
|
|
||
|
buildInputs = [ hatchling ];
|
||
|
propagatedBuildInputs = [ mitel-ommclient2 sqlalchemy ywsd diffsync ];
|
||
|
}
|