python3Packages.notion-client: 2.0.0 -> 2.1.0

https://github.com/ramnes/notion-sdk-py/releases/tag/2.1.0
This commit is contained in:
Martin Weinelt
2023-12-20 20:44:40 +01:00
parent 9237cd8100
commit b8fea39d83
@@ -3,6 +3,7 @@
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
, setuptools
, anyio
, httpx
, pytest-asyncio
@@ -11,17 +12,22 @@
buildPythonPackage rec {
pname = "notion-client";
version = "2.0.0";
format = "setuptools";
version = "2.1.0";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "ramnes";
repo = "notion-sdk-py";
rev = version;
hash = "sha256-zfG1OgH/2ytDUC+ogIY9/nP+xkgjiMt9+HVcWEMXoj8=";
rev = "refs/tags/${version}";
hash = "sha256-u10iPSbFPv9RewEYru3V6MpwhhySzmnymmv4CsefGC8=";
};
nativeBuildInputs = [
setuptools
];
propagatedBuildInputs = [
httpx
];