python3Packages.gidgethub: switch to pypaBuildHook

This commit is contained in:
Peder Bergebakken Sundt 2023-09-10 00:09:15 +02:00
parent 5871c4c5ac
commit 0956b8a719

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, flit
, uritemplate
, pyjwt
, pytestCheckHook
@ -15,7 +16,7 @@
buildPythonPackage rec {
pname = "gidgethub";
version = "5.3.0";
format = "flit";
format = "pyproject";
disabled = pythonOlder "3.6";
@ -24,6 +25,10 @@ buildPythonPackage rec {
hash = "sha256-ns59N/vOuBm4BWDn7Vj5NuSKZdN+xfVtt5FFFWtCaiU=";
};
nativeBuildInputs = [
flit
];
propagatedBuildInputs = [
uritemplate
pyjwt