xkbcommon: init at 0.4

This commit is contained in:
Charlotte Van Petegem 2021-10-16 13:29:12 +02:00 committed by Charlotte Van Petegem
parent c00092afde
commit 506c85ab9b
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, buildPythonPackage
, fetchPypi
, python
, cffi
, pkg-config
, libxkbcommon
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "xkbcommon";
version = "0.4";
src = fetchPypi {
inherit pname version;
sha256 = "V5LMaX5TPhk9x4ZA4MGFzDhUiC6NKPo4uTbW6Q7mdVw=";
};
nativeBuildInputs = [ pkg-config ];
propagatedNativeBuildInputs = [ cffi ];
buildInputs = [ libxkbcommon ];
propagatedBuildInputs = [ cffi ];
checkInputs = [ pytestCheckHook ];
postBuild = ''
${python.interpreter} xkbcommon/ffi_build.py
'';
pythonImportsCheck = [ "xkbcommon" ];
meta = with lib; {
homepage = "https://github.com/sde1000/python-xkbcommon";
description = "Python bindings for libxkbcommon using cffi";
license = licenses.mit;
maintainers = with maintainers; [ chvp ];
};
}

View file

@ -9841,6 +9841,8 @@ in {
xhtml2pdf = callPackage ../development/python-modules/xhtml2pdf { };
xkbcommon = callPackage ../development/python-modules/xkbcommon { };
xkcdpass = callPackage ../development/python-modules/xkcdpass { };
xknx = callPackage ../development/python-modules/xknx { };