mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
Merge pull request #325179 from gador/xlib-move-nose
python312Packages.xlib: change nose to pynose
This commit is contained in:
commit
f53f729ecd
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user