Unverified Commit 38b7104f authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

Merge pull request #218172 from r-ryantm/auto-update/python310Packages.kbcstorage

python310Packages.kbcstorage: 0.4.1 -> 0.5.0
parents 264c496a ecb41a93
Loading
Loading
Loading
Loading
+41 −38
Original line number Diff line number Diff line
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder

# build
, setuptools-scm
@@ -14,17 +15,18 @@
, responses
, unittestCheckHook
}:

buildPythonPackage rec {
  pname = "sapi-python-client";
    version = "0.4.1";
  version = "0.5.0";
  format = "setuptools";

  disabled = pythonOlder "3.7";

  src = fetchFromGitHub {
    owner = "keboola";
    repo = pname;
      rev  = version;
      sha256 = "189dzj06vzp7366h2qsfvbjmw9qgl7jbp8syhynn9yvrjqp4k8h3";
    rev = "refs/tags/${version}";
    hash = "sha256-79v9quhzeNRXcm6Z7BhD76lTZtw+Z0T1yK3zhrdreXw=";
  };

  SETUPTOOLS_SCM_PRETEND_VERSION = version;
@@ -39,7 +41,7 @@ buildPythonPackage rec {
    requests
  ];

    # requires API token and an active keboola bucket
  # Requires API token and an active Keboola bucket
  # ValueError: Root URL is required.
  doCheck = false;

@@ -58,7 +60,8 @@ buildPythonPackage rec {
  meta = with lib; {
    description = "Keboola Connection Storage API client";
    homepage = "https://github.com/keboola/sapi-python-client";
      maintainers = with maintainers; [ mrmebelman ];
    changelog = "https://github.com/keboola/sapi-python-client/releases/tag/${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ mrmebelman ];
  };
}