python311Packages.testfixtures: switch to pypa build

This commit is contained in:
natsukium 2023-12-21 00:43:09 +09:00 committed by Martin Weinelt
parent 351014152e
commit 302a89a2d6
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -6,6 +6,7 @@
, pytestCheckHook
, pythonAtLeast
, pythonOlder
, setuptools
, sybil
, twisted
, zope-component
@ -14,7 +15,7 @@
buildPythonPackage rec {
pname = "testfixtures";
version = "7.2.2";
format = "setuptools";
pyproject = true;
# DO NOT CONTACT upstream.
# https://github.com/simplistix/ is only concerned with internal CI process.
# Any attempt by non-standard pip workflows to comment on issues will
@ -38,6 +39,10 @@ buildPythonPackage rec {
})
];
nativeBuildInputs = [
setuptools
];
nativeCheckInputs = [
mock
pytestCheckHook