nixpkgs/pkgs/servers/dcnnt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
663 B
Nix
Raw Normal View History

2022-01-03 14:59:09 +00:00
{ buildPythonApplication, fetchPypi, lib, pycryptodome }:
buildPythonApplication rec {
pname = "dcnnt";
2022-12-30 12:58:11 +00:00
version = "0.9.0";
2022-01-03 14:59:09 +00:00
src = fetchPypi {
inherit pname version;
2022-12-30 12:58:11 +00:00
sha256 = "sha256-YG+NLKI9cz8Uu2y+Ut2q+vn67ExTya00XjHlWRAksz8=";
2022-01-03 14:59:09 +00:00
};
propagatedBuildInputs = [
pycryptodome
];
meta = with lib; {
homepage = "https://github.com/cyanomiko/dcnnt-py";
description = "UI-less tool to connect Android phone with desktop";
longDescription = ''
Yet another tool to connect Android phone with desktop similar to
KDE Connect.
'';
license = licenses.mit;
maintainers = with maintainers; [ arnoutkroeze ];
};
}