python3Packages.circus: switch to pypaBuildHook

This commit is contained in:
Peder Bergebakken Sundt 2023-09-10 00:05:04 +02:00
parent ce95c6a009
commit 66164e4297

View file

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, flit-core
, psutil
, pytestCheckHook
, pyyaml
@ -11,13 +12,17 @@
buildPythonPackage rec {
pname = "circus";
version = "0.18.0";
format = "flit";
format = "pyproject";
src = fetchPypi {
inherit pname version;
hash = "sha256-GTzoIk4GjO1mckz0gxBvtmdLUaV1g6waDn7Xp+6Mcas=";
};
nativeBuildInputs = [
flit-core
];
propagatedBuildInputs = [
psutil
pyzmq