python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / notion-client / default.nix
blob12500e9fe85421a33984ed00a53f59d4686493c9
2   lib,
3   buildPythonPackage,
4   fetchFromGitHub,
5   pythonOlder,
6   pytestCheckHook,
7   setuptools,
8   anyio,
9   httpx,
10   pytest-asyncio,
11   pytest-vcr,
14 buildPythonPackage rec {
15   pname = "notion-client";
16   version = "2.2.1";
17   pyproject = true;
19   disabled = pythonOlder "3.7";
21   src = fetchFromGitHub {
22     owner = "ramnes";
23     repo = "notion-sdk-py";
24     rev = "refs/tags/${version}";
25     hash = "sha256-IEWFrdqrawFbuwA8bUewanmBoGWsjHJ7ucgvHQEaMcA=";
26   };
28   nativeBuildInputs = [ setuptools ];
30   propagatedBuildInputs = [ httpx ];
32   # disable coverage options as they don't provide us value, and they break the default pytestCheckHook
33   preCheck = ''
34     sed -i '/addopts/d' ./setup.cfg
35   '';
37   nativeCheckInputs = [
38     pytestCheckHook
39     anyio
40     pytest-asyncio
41     pytest-vcr
42   ];
44   pythonImportsCheck = [ "notion_client" ];
46   disabledTests = [
47     # requires network access
48     "test_api_http_response_error"
49   ];
51   meta = with lib; {
52     description = "Python client for the official Notion API";
53     homepage = "https://github.com/ramnes/notion-sdk-py";
54     changelog = "https://github.com/ramnes/notion-sdk-py/releases/tag/${version}";
55     license = licenses.mit;
56     maintainers = with maintainers; [ jpetrucciani ];
57   };