2021-06-03 11:09:11 +01:00
|
|
|
{ lib, git, setuptools, setuptools-scm, fetchFromGitHub, requests, boto3, buildPythonPackage, responses }:
|
2020-03-05 17:57:23 +00:00
|
|
|
|
2020-08-25 03:07:09 +01:00
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "sapi-python-client";
|
|
|
|
version = "0.1.3";
|
2020-03-05 17:57:23 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "keboola";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1xja4v5d30hy26lfys21vcz1lcs88v8mvjxwl2dc3wxx2pzdvcf6";
|
|
|
|
};
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
sed -i 's|use_scm_version=True|version="${version}"|' setup.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
doCheck = false; # requires API token and an active keboola bucket
|
|
|
|
|
2021-06-03 11:09:11 +01:00
|
|
|
nativeBuildInputs = [ git setuptools-scm ];
|
2020-03-05 17:57:23 +00:00
|
|
|
|
2020-08-25 03:07:09 +01:00
|
|
|
propagatedBuildInputs = [ setuptools requests boto3 responses ];
|
2020-03-05 17:57:23 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-08-25 03:07:09 +01:00
|
|
|
description = "Keboola Connection Storage API client";
|
|
|
|
homepage = "https://github.com/keboola/sapi-python-client";
|
2020-03-05 17:57:23 +00:00
|
|
|
maintainers = with maintainers; [ mrmebelman ];
|
2020-08-25 03:07:09 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
2020-03-05 17:57:23 +00:00
|
|
|
}
|