53 lines
1.0 KiB
Nix
53 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
anyio,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
httpx,
|
|
pytest-asyncio,
|
|
pytest-cov-stub,
|
|
pytest-vcr,
|
|
pytestCheckHook,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "notion-client";
|
|
version = "2.7.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ramnes";
|
|
repo = "notion-sdk-py";
|
|
tag = version;
|
|
hash = "sha256-15IPycaLk8r0/bUphL+IDypBMhgdX1tAUS50VD3p/00=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ httpx ];
|
|
|
|
nativeCheckInputs = [
|
|
anyio
|
|
pytest-asyncio
|
|
pytest-cov-stub
|
|
pytest-vcr
|
|
pytestCheckHook
|
|
];
|
|
|
|
pythonImportsCheck = [ "notion_client" ];
|
|
|
|
disabledTests = [
|
|
# Test requires network access
|
|
"test_api_http_response_error"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python client for the official Notion API";
|
|
homepage = "https://github.com/ramnes/notion-sdk-py";
|
|
changelog = "https://github.com/ramnes/notion-sdk-py/releases/tag/${src.tag}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jpetrucciani ];
|
|
};
|
|
}
|