1{
2 buildPythonApplication,
3 fetchPypi,
4 lib,
5 pycryptodome,
6}:
7
8buildPythonApplication rec {
9 pname = "dcnnt";
10 version = "0.10.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 hash = "sha256-73ZLgb5YcXlAOjbKLVv8oqgS6pstBdJxa7LFUgIHpUE=";
16 };
17
18 propagatedBuildInputs = [
19 pycryptodome
20 ];
21
22 meta = with lib; {
23 homepage = "https://github.com/cyanomiko/dcnnt-py";
24 description = "UI-less tool to connect Android phone with desktop";
25 longDescription = ''
26 Yet another tool to connect Android phone with desktop similar to
27 KDE Connect.
28 '';
29 license = licenses.mit;
30 maintainers = with maintainers; [ arnoutkroeze ];
31 mainProgram = "dcnnt";
32 };
33}