pythonPackages.libevdev: init at 0.7
This commit is contained in:
21
pkgs/development/python-modules/libevdev/default.nix
Normal file
21
pkgs/development/python-modules/libevdev/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ stdenv, buildPythonPackage, isPy27, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "libevdev";
|
||||
version = "0.7";
|
||||
disabled = isPy27;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "10gwj08kn2rs4waq7807mq34cbavgkpg8fpir8mvnba601b8q4r4";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Python wrapper around the libevdev C library";
|
||||
homepage = "https://gitlab.freedesktop.org/libevdev/python-libevdev";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ nickhu ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user