python310Packages.kbcstorage: use nixpkgs-fmt

- disable on unsupported Python releases
This commit is contained in:
Fabian Affolter 2023-02-25 10:54:20 +01:00 committed by GitHub
parent d25023bdc0
commit ecb41a9370
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, pythonOlder
# build
, setuptools-scm
@ -14,52 +15,53 @@
, responses
, unittestCheckHook
}:
buildPythonPackage rec {
pname = "sapi-python-client";
version = "0.5.0";
format = "setuptools";
pname = "sapi-python-client";
version = "0.5.0";
format = "setuptools";
src = fetchFromGitHub {
owner = "keboola";
repo = pname;
rev = "refs/tags/${version}";
hash = "sha256-79v9quhzeNRXcm6Z7BhD76lTZtw+Z0T1yK3zhrdreXw=";
};
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";
changelog = "https://github.com/keboola/sapi-python-client/releases/tag/${version}";
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 ];
};
}