biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / dcnnt / default.nix
blob2279c9f116b13ed8d4da5661ce8c4a892675ab20
1 { buildPythonApplication, fetchPypi, lib, pycryptodome }:
3 buildPythonApplication rec {
4   pname = "dcnnt";
5   version = "0.10.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-73ZLgb5YcXlAOjbKLVv8oqgS6pstBdJxa7LFUgIHpUE=";
10   };
12   propagatedBuildInputs = [
13     pycryptodome
14   ];
16   meta = with lib; {
17     homepage = "https://github.com/cyanomiko/dcnnt-py";
18     description = "UI-less tool to connect Android phone with desktop";
19     longDescription = ''
20       Yet another tool to connect Android phone with desktop similar to
21       KDE Connect.
22     '';
23     license = licenses.mit;
24     maintainers = with maintainers; [ arnoutkroeze ];
25     mainProgram = "dcnnt";
26   };