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,15 @@
{ lib, buildPythonPackage, fetchPypi, pydantic, structlog, colorama, redis }:
buildPythonPackage rec {
pname = "diffsync";
version = "1.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "84a736d03d385bd07cf7c86f57385d4130c3c3273bf7bc90febe2fa530ee1aa6";
};
propagatedBuildInputs = [ pydantic structlog colorama redis ];
pythonImportsCheck = [ "diffsync" ];
}