33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
43 lines
908 B
Nix
43 lines
908 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, python
|
|
, cffi
|
|
, pkg-config
|
|
, wayland
|
|
, pytestCheckHook
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pywayland";
|
|
version = "0.4.15";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-vz7Sjd8KT7UgOBI5AN5q6CS7jl+WL87w91cgm0bXRGw=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
propagatedNativeBuildInputs = [ cffi ];
|
|
buildInputs = [ wayland ];
|
|
propagatedBuildInputs = [ cffi ];
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
|
|
postBuild = ''
|
|
${python.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";
|
|
license = licenses.ncsa;
|
|
maintainers = with maintainers; [ chvp ];
|
|
};
|
|
}
|