mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Merge pull request #325179 from gador/xlib-move-nose
python312Packages.xlib: change nose to pynose
This commit is contained in:
commit
f53f729ecd
1 changed files with 6 additions and 3 deletions
|
@ -4,11 +4,12 @@
|
|||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
six,
|
||||
setuptools,
|
||||
setuptools-scm,
|
||||
xorg,
|
||||
python,
|
||||
mock,
|
||||
nose,
|
||||
pynose,
|
||||
pytestCheckHook,
|
||||
util-linux,
|
||||
}:
|
||||
|
@ -16,7 +17,9 @@
|
|||
buildPythonPackage rec {
|
||||
pname = "xlib";
|
||||
version = "0.33";
|
||||
format = "setuptools";
|
||||
pyproject = true;
|
||||
|
||||
build-system = [ setuptools ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "python-xlib";
|
||||
|
@ -36,7 +39,7 @@ buildPythonPackage rec {
|
|||
nativeCheckInputs = [
|
||||
pytestCheckHook
|
||||
mock
|
||||
nose
|
||||
pynose
|
||||
util-linux
|
||||
xorg.xauth
|
||||
xorg.xvfb
|
||||
|
|
Loading…
Reference in a new issue