Merge pull request #306806 from fabaff/nebula3-python-bump

python312Packages.nebula3-python: 3.5.0 -> 3.5.1
This commit is contained in:
Fabian Affolter 2024-04-26 09:18:02 +02:00 committed by GitHub
commit 28f314a9f9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +1,20 @@
{ lib {
, buildPythonPackage lib,
, fetchFromGitHub buildPythonPackage,
, pdm-backend fetchFromGitHub,
, future future,
, httplib2 httplib2,
, pythonOlder httpx,
, pytz pdm-backend,
, pytestCheckHook pytestCheckHook,
, six pythonOlder,
pytz,
six,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "nebula3-python"; pname = "nebula3-python";
version = "3.5.0"; version = "3.5.1";
pyproject = true; pyproject = true;
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
@ -21,27 +23,22 @@ buildPythonPackage rec {
owner = "vesoft-inc"; owner = "vesoft-inc";
repo = "nebula-python"; repo = "nebula-python";
rev = "refs/tags/v${version}"; rev = "refs/tags/v${version}";
hash = "sha256-T9lZVYov6tQ8QRM2QtOGyolHk3O5FSb3xq70nS2Rr6c="; hash = "sha256-9JpdCR8ewOJcvJ3fAg/AcMKtSz7NBIqWAuG9cofv0Ak=";
}; };
build-system = [ build-system = [ pdm-backend ];
pdm-backend
];
dependencies = [ dependencies = [
future future
httplib2 httplib2
httpx
pytz pytz
six six
]; ] ++ httpx.optional-dependencies.http2;
nativeCheckInputs = [ nativeCheckInputs = [ pytestCheckHook ];
pytestCheckHook
];
pythonImportsCheck = [ pythonImportsCheck = [ "nebula3" ];
"nebula3"
];
disabledTestPaths = [ disabledTestPaths = [
# Tests require a running thrift instance # Tests require a running thrift instance