94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
51 lines
1 KiB
Nix
51 lines
1 KiB
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchFromGitHub
|
|
, pythonOlder
|
|
, pytestCheckHook
|
|
, anyio
|
|
, httpx
|
|
, pytest-asyncio
|
|
, pytest-vcr
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "notion-client";
|
|
version = "2.0.0";
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ramnes";
|
|
repo = "notion-sdk-py";
|
|
rev = version;
|
|
hash = "sha256-zfG1OgH/2ytDUC+ogIY9/nP+xkgjiMt9+HVcWEMXoj8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
httpx
|
|
];
|
|
|
|
# disable coverage options as they don't provide us value, and they break the default pytestCheckHook
|
|
preCheck = ''
|
|
sed -i '/addopts/d' ./setup.cfg
|
|
'';
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
anyio
|
|
pytest-asyncio
|
|
pytest-vcr
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"notion_client"
|
|
];
|
|
|
|
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/${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jpetrucciani ];
|
|
};
|
|
}
|