Files
2026-05-30 17:04:28 +00:00

60 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
httpx,
pydantic,
typing-extensions,
anyio,
distro,
sniffio,
hatchling,
hatch-fancy-pypi-readme,
}:
buildPythonPackage rec {
pname = "cloudflare";
version = "5.2.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-3PXLS1T1Q7AApoCVKXvMFqnGGLmMCXR9e3jlnj2GUpI=";
};
postPatch = ''
substituteInPlace pyproject.toml \
--replace-fail 'hatchling==1.26.3' 'hatchling>=1.26.3'
'';
build-system = [
hatchling
hatch-fancy-pypi-readme
];
dependencies = [
httpx
pydantic
typing-extensions
anyio
distro
sniffio
];
# tests require networking
doCheck = false;
pythonImportsCheck = [ "cloudflare" ];
meta = {
description = "Official Python library for the Cloudflare API";
homepage = "https://github.com/cloudflare/cloudflare-python";
changelog = "https://github.com/cloudflare/cloudflare-python/blob/v${version}/CHANGELOG.md";
maintainers = with lib.maintainers; [
marie
jemand771
];
license = lib.licenses.asl20;
};
}