Merge pull request #325179 from gador/xlib-move-nose

python312Packages.xlib: change nose to pynose
This commit is contained in:
Weijia Wang 2024-07-08 17:13:43 +02:00 committed by GitHub
commit f53f729ecd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4,11 +4,12 @@
buildPythonPackage, buildPythonPackage,
fetchFromGitHub, fetchFromGitHub,
six, six,
setuptools,
setuptools-scm, setuptools-scm,
xorg, xorg,
python, python,
mock, mock,
nose, pynose,
pytestCheckHook, pytestCheckHook,
util-linux, util-linux,
}: }:
@ -16,7 +17,9 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "xlib"; pname = "xlib";
version = "0.33"; version = "0.33";
format = "setuptools"; pyproject = true;
build-system = [ setuptools ];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "python-xlib"; owner = "python-xlib";
@ -36,7 +39,7 @@ buildPythonPackage rec {
nativeCheckInputs = [ nativeCheckInputs = [
pytestCheckHook pytestCheckHook
mock mock
nose pynose
util-linux util-linux
xorg.xauth xorg.xauth
xorg.xvfb xorg.xvfb