From 163ab611e9de8510d41822a691e6ac9915c3a82c Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Thu, 25 Apr 2024 17:45:08 +0200 Subject: [PATCH] python312Packages.nebula3-python: 3.5.0 -> 3.5.1 Diff: https://github.com/vesoft-inc/nebula-python/compare/refs/tags/v3.5.0...v3.5.1 Changelog: https://github.com/vesoft-inc/nebula-python/blob/3.5.1/CHANGELOG.md --- .../python-modules/nebula3-python/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/nebula3-python/default.nix b/pkgs/development/python-modules/nebula3-python/default.nix index c352f732ef20..fd7372be54fd 100644 --- a/pkgs/development/python-modules/nebula3-python/default.nix +++ b/pkgs/development/python-modules/nebula3-python/default.nix @@ -1,18 +1,19 @@ { lib , buildPythonPackage , fetchFromGitHub -, pdm-backend , future , httplib2 +, httpx +, pdm-backend +, pytestCheckHook , pythonOlder , pytz -, pytestCheckHook , six }: buildPythonPackage rec { pname = "nebula3-python"; - version = "3.5.0"; + version = "3.5.1"; pyproject = true; disabled = pythonOlder "3.8"; @@ -21,7 +22,7 @@ buildPythonPackage rec { owner = "vesoft-inc"; repo = "nebula-python"; rev = "refs/tags/v${version}"; - hash = "sha256-T9lZVYov6tQ8QRM2QtOGyolHk3O5FSb3xq70nS2Rr6c="; + hash = "sha256-9JpdCR8ewOJcvJ3fAg/AcMKtSz7NBIqWAuG9cofv0Ak="; }; build-system = [ @@ -31,9 +32,10 @@ buildPythonPackage rec { dependencies = [ future httplib2 + httpx pytz six - ]; + ] ++ httpx.optional-dependencies.http2; nativeCheckInputs = [ pytestCheckHook