My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/kbcstorage/default.nix

69 lines
1.3 KiB

{ lib
, buildPythonPackage
, fetchFromGitHub
# build
, setuptools-scm
# propagates
, azure-storage-blob
, boto3
, requests
# tests
, responses
, python
}:
buildPythonPackage rec {
pname = "sapi-python-client";
version = "0.4.1";
format = "setuptools";
src = fetchFromGitHub {
owner = "keboola";
repo = pname;
rev = version;
sha256 = "189dzj06vzp7366h2qsfvbjmw9qgl7jbp8syhynn9yvrjqp4k8h3";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
azure-storage-blob
boto3
requests
];
# requires API token and an active keboola bucket
# ValueError: Root URL is required.
doCheck = false;
checkInputs = [
responses
];
checkPhase = ''
runHook preCheck
${python.interpreter} -m unittest discover
runHook postCheck
'';
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";
maintainers = with maintainers; [ mrmebelman ];
license = licenses.mit;
};
}