nixpkgs/pkgs/development/python-modules/pynput/default.nix

29 lines
678 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi, sphinx, setuptools-lint, xlib, evdev }:
2020-04-23 23:18:46 +00:00
buildPythonPackage rec {
pname = "pynput";
2021-02-20 09:09:14 +00:00
version = "1.7.3";
2020-04-23 23:18:46 +00:00
src = fetchPypi {
inherit pname version;
2021-02-20 09:09:14 +00:00
sha256 = "4e50b1a0ab86847e87e58f6d1993688b9a44f9f4c88d4712315ea8eb552ef828";
2020-04-23 23:18:46 +00:00
};
nativeBuildInputs = [ sphinx ];
propagatedBuildInputs = [ setuptools-lint xlib ]
++ lib.optionals stdenv.isLinux [
evdev
];
2020-04-23 23:18:46 +00:00
doCheck = false;
meta = with lib; {
2020-04-23 23:18:46 +00:00
description = "A library to control and monitor input devices";
homepage = "https://github.com/moses-palmer/pynput";
license = licenses.lgpl3;
maintainers = with maintainers; [ nickhu ];
};
}