nixpkgs/pkgs/development/python-modules/xlib/default.nix
adisbladis 02dab4ab5c python3.pkgs.*: Explicitly pass buildPythonPackage format parameter
Long term we should move everything over to `pyproject = true`, but in
the mean time we can work towards deprecating the implicit `format` paremeter.

cc https://github.com/NixOS/nixpkgs/issues/253154
cc @mweinelt @figsoda
2023-12-07 17:46:49 +01:00

63 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";
format = "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
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; [ ];
};
}