python3Packages.circuit-webhook: modernize

This commit is contained in:
Harinn
2026-06-07 10:49:29 +07:00
parent 43e115a692
commit ffa662bbd3

View File

@@ -5,13 +5,15 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "circuit-webhook";
version = "1.0.1";
pyproject = true;
__structuredAttrs = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-NhePKBfzdkw7iVHmVrOxf8ZcQrb1Sq2xMIfu4P9+Ppw=";
};
@@ -28,4 +30,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})