pythonPackages.libevdev: init at 0.7
This commit is contained in:
parent
b772cd3a0c
commit
e729bd808d
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -2597,6 +2597,8 @@ in {
|
|||||||
|
|
||||||
libais = callPackage ../development/python-modules/libais { };
|
libais = callPackage ../development/python-modules/libais { };
|
||||||
|
|
||||||
|
libevdev = callPackage ../development/python-modules/libevdev { };
|
||||||
|
|
||||||
libfdt = toPythonModule (pkgs.dtc.override {
|
libfdt = toPythonModule (pkgs.dtc.override {
|
||||||
inherit python;
|
inherit python;
|
||||||
pythonSupport = true;
|
pythonSupport = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user