nixpkgs/pkgs/development/python-modules/xlib/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
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.
2023-01-21 12:00:00 +00:00

62 lines
1.1 KiB
Nix

{ lib, stdenv
, buildPythonPackage
, fetchFromGitHub
, six
, setuptools-scm
, xorg
, python
, mock
, nose
, pytestCheckHook
, util-linux
}:
buildPythonPackage rec {
pname = "xlib";
version = "0.33";
src = fetchFromGitHub {
owner = "python-xlib";
repo = "python-xlib";
rev = "refs/tags/${version}";
hash = "sha256-u06OWlMIOUzHOVS4hvm72jGgTSXWUqMvEQd8bTpFog0=";
};
nativeBuildInputs = [
setuptools-scm
];
buildInputs = [
xorg.libX11
];
propagatedBuildInputs = [
six
];
doCheck = !stdenv.isDarwin;
nativeCheckInputs = [
pytestCheckHook
mock
nose
util-linux
xorg.xauth
xorg.xorgserver
];
disabledTestPaths = [
# requires x session
"test/test_xlib_display.py"
];
meta = with lib; {
changelog = "https://github.com/python-xlib/python-xlib/releases/tag/${version}";
description = "Fully functional X client library for Python programs";
homepage = "https://github.com/python-xlib/python-xlib";
license = licenses.lgpl21Plus;
maintainers = with maintainers; [ ];
};
}