python3Packages.pytest-cid: switch to pypaBuildHook

This commit is contained in:
Peder Bergebakken Sundt 2023-09-10 00:30:08 +02:00
parent 0a45222556
commit ebeac39db7

View file

@ -2,6 +2,7 @@
, fetchFromGitHub
, buildPythonPackage
, pythonOlder
, flit-core
, py-cid
, pytestCheckHook
, pytest-cov
@ -10,7 +11,7 @@
buildPythonPackage rec {
pname = "pytest-cid";
version = "1.1.2";
format = "flit";
format = "pyproject";
disabled = pythonOlder "3.5";
src = fetchFromGitHub {
@ -25,6 +26,10 @@ buildPythonPackage rec {
--replace "pytest >= 5.0, < 7.0" "pytest >= 5.0"
'';
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
py-cid
];