about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pynput/default.nix
blob: 2b83f4c1223b2a85ad53ccc20d016c3e3647445d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, buildPythonPackage, fetchPypi, sphinx, setuptools-lint, xlib }:

buildPythonPackage rec {
  pname = "pynput";
  version = "1.6.8";

  src = fetchPypi {
    inherit pname version;
    sha256 = "16h4wn7f54rw30jrya7rmqkx3f51pxn8cplid95v880md8yqdhb8";
  };

  nativeBuildInputs = [ sphinx ];

  propagatedBuildInputs = [ setuptools-lint xlib ];

  doCheck = false;

  meta = with stdenv.lib; {
    description = "A library to control and monitor input devices";
    homepage = "https://github.com/moses-palmer/pynput";
    license = licenses.lgpl3;
    maintainers = with maintainers; [ nickhu ];
  };
}