Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / notion-client / default.nix
blob1f9f5f1d65e97e1663d8a08907a0966f9030ca71
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 , pythonOlder
5 , pytestCheckHook
6 , setuptools
7 , anyio
8 , httpx
9 , pytest-asyncio
10 , pytest-vcr
13 buildPythonPackage rec {
14   pname = "notion-client";
15   version = "2.2.1";
16   pyproject = true;
18   disabled = pythonOlder "3.7";
20   src = fetchFromGitHub {
21     owner = "ramnes";
22     repo = "notion-sdk-py";
23     rev = "refs/tags/${version}";
24     hash = "sha256-IEWFrdqrawFbuwA8bUewanmBoGWsjHJ7ucgvHQEaMcA=";
25   };
27   nativeBuildInputs = [
28     setuptools
29   ];
31   propagatedBuildInputs = [
32     httpx
33   ];
35   # disable coverage options as they don't provide us value, and they break the default pytestCheckHook
36   preCheck = ''
37     sed -i '/addopts/d' ./setup.cfg
38   '';
40   nativeCheckInputs = [
41     pytestCheckHook
42     anyio
43     pytest-asyncio
44     pytest-vcr
45   ];
47   pythonImportsCheck = [
48     "notion_client"
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   };