Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / servers / dcnnt / default.nix
blob1140325b05f38d9f7fb36a2a7f44fb5205ea2e06
1 { buildPythonApplication, fetchPypi, lib, pycryptodome }:
3 buildPythonApplication rec {
4   pname = "dcnnt";
5   version = "0.9.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "sha256-YG+NLKI9cz8Uu2y+Ut2q+vn67ExTya00XjHlWRAksz8=";
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   };