Merge pull request #218172 from r-ryantm/auto-update/python310Packages.kbcstorage
python310Packages.kbcstorage: 0.4.1 -> 0.5.0
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, pythonOlder
|
||||
|
||||
# build
|
||||
, setuptools-scm
|
||||
@@ -14,51 +15,53 @@
|
||||
, responses
|
||||
, unittestCheckHook
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "sapi-python-client";
|
||||
version = "0.4.1";
|
||||
format = "setuptools";
|
||||
pname = "sapi-python-client";
|
||||
version = "0.5.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "keboola";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "189dzj06vzp7366h2qsfvbjmw9qgl7jbp8syhynn9yvrjqp4k8h3";
|
||||
};
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||
src = fetchFromGitHub {
|
||||
owner = "keboola";
|
||||
repo = pname;
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-79v9quhzeNRXcm6Z7BhD76lTZtw+Z0T1yK3zhrdreXw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
SETUPTOOLS_SCM_PRETEND_VERSION = version;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
azure-storage-blob
|
||||
boto3
|
||||
requests
|
||||
];
|
||||
nativeBuildInputs = [
|
||||
setuptools-scm
|
||||
];
|
||||
|
||||
# requires API token and an active keboola bucket
|
||||
# ValueError: Root URL is required.
|
||||
doCheck = false;
|
||||
propagatedBuildInputs = [
|
||||
azure-storage-blob
|
||||
boto3
|
||||
requests
|
||||
];
|
||||
|
||||
nativeCheckInputs = [
|
||||
unittestCheckHook
|
||||
responses
|
||||
];
|
||||
# Requires API token and an active Keboola bucket
|
||||
# ValueError: Root URL is required.
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"kbcstorage"
|
||||
"kbcstorage.buckets"
|
||||
"kbcstorage.client"
|
||||
"kbcstorage.tables"
|
||||
];
|
||||
nativeCheckInputs = [
|
||||
unittestCheckHook
|
||||
responses
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Keboola Connection Storage API client";
|
||||
homepage = "https://github.com/keboola/sapi-python-client";
|
||||
maintainers = with maintainers; [ mrmebelman ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
pythonImportsCheck = [
|
||||
"kbcstorage"
|
||||
"kbcstorage.buckets"
|
||||
"kbcstorage.client"
|
||||
"kbcstorage.tables"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Keboola Connection Storage API client";
|
||||
homepage = "https://github.com/keboola/sapi-python-client";
|
||||
changelog = "https://github.com/keboola/sapi-python-client/releases/tag/${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mrmebelman ];
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user