13 buildPythonPackage rec {
14 pname = "notion-client";
18 disabled = pythonOlder "3.7";
20 src = fetchFromGitHub {
22 repo = "notion-sdk-py";
23 rev = "refs/tags/${version}";
24 hash = "sha256-IEWFrdqrawFbuwA8bUewanmBoGWsjHJ7ucgvHQEaMcA=";
31 propagatedBuildInputs = [
35 # disable coverage options as they don't provide us value, and they break the default pytestCheckHook
37 sed -i '/addopts/d' ./setup.cfg
47 pythonImportsCheck = [
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 ];