depot/third_party/nixpkgs/pkgs/development/python-modules/pywayland/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

46 lines
1,003 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
python,
cffi,
pkg-config,
wayland,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "pywayland";
version = "0.4.17";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-9/0ZAmOML3oVrAfzGj72iV08FgyiYBSByoKyxhojxlc=";
};
nativeBuildInputs = [ pkg-config ];
propagatedNativeBuildInputs = [ cffi ];
buildInputs = [ wayland ];
propagatedBuildInputs = [ cffi ];
nativeCheckInputs = [ pytestCheckHook ];
postBuild = ''
${python.pythonOnBuildForHost.interpreter} pywayland/ffi_build.py
'';
# Tests need this to create sockets
preCheck = ''
export XDG_RUNTIME_DIR="$PWD"
'';
pythonImportsCheck = [ "pywayland" ];
meta = with lib; {
homepage = "https://github.com/flacjacket/pywayland";
description = "Python bindings to wayland using cffi";
mainProgram = "pywayland-scanner";
license = licenses.ncsa;
maintainers = with maintainers; [ chvp ];
};
}