Commit 163ab611 authored by Fabian Affolter's avatar Fabian Affolter
Browse files
parent bf182c39
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
{ 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