depot/third_party/nixpkgs/pkgs/applications/misc/remarkable/remarkable-mouse/default.nix
Default email ca5ab3a501 Project import generated by Copybara.
GitOrigin-RevId: 4a01ca36d6bfc133bc617e661916a81327c9bbc8
2022-07-14 08:49:19 -04:00

24 lines
666 B
Nix

{ lib, buildPythonApplication, fetchPypi, python3Packages }:
buildPythonApplication rec {
pname = "remarkable-mouse";
version = "7.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-R/sQwVt+YHENkG9U2R205+YADovB8P58eMrUD/WnPic=";
};
propagatedBuildInputs = with python3Packages; [ screeninfo paramiko pynput libevdev ];
# no tests
doCheck = false;
pythonImportsCheck = [ "remarkable_mouse" ];
meta = with lib; {
description = "A program to use a reMarkable as a graphics tablet";
homepage = "https://github.com/evidlo/remarkable_mouse";
license = licenses.gpl3;
maintainers = [ maintainers.nickhu ];
};
}