mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
58 lines
1.1 KiB
Nix
58 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
six,
|
|
setuptools,
|
|
setuptools-scm,
|
|
xorg,
|
|
python,
|
|
mock,
|
|
pytestCheckHook,
|
|
util-linux,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "xlib";
|
|
version = "0.33";
|
|
pyproject = true;
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
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
|
|
util-linux
|
|
xorg.xauth
|
|
xorg.xvfb
|
|
];
|
|
|
|
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; [ ];
|
|
};
|
|
}
|