2018-01-20 13:32:04 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
2021-02-08 00:42:00 +00:00
|
|
|
, fetchFromGitHub
|
2018-01-20 13:32:04 +00:00
|
|
|
, requests
|
|
|
|
, pyjwt
|
2021-02-08 00:42:00 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
, responses
|
2018-01-20 13:32:04 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "globus-sdk";
|
2021-02-06 01:05:21 +00:00
|
|
|
version = "2.0.1";
|
2018-01-20 13:32:04 +00:00
|
|
|
|
2021-02-08 00:42:00 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "globus";
|
|
|
|
repo = "globus-sdk-python";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "1kqnr50iwcq9nx40lblbqzf327cdcbkrir6vh70067hk33rq0gm9";
|
2018-01-20 13:32:04 +00:00
|
|
|
};
|
|
|
|
|
2021-02-08 00:42:00 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
requests
|
|
|
|
pyjwt
|
|
|
|
];
|
2018-01-20 13:32:04 +00:00
|
|
|
|
2021-02-08 00:42:00 +00:00
|
|
|
checkInputs = [
|
|
|
|
pytestCheckHook
|
|
|
|
responses
|
|
|
|
];
|
2020-08-25 03:07:09 +01:00
|
|
|
|
2021-02-08 00:42:00 +00:00
|
|
|
pythonImportsCheck = [ "globus_sdk" ];
|
2020-08-25 03:07:09 +01:00
|
|
|
|
2018-01-20 13:32:04 +00:00
|
|
|
meta = with lib; {
|
2021-02-08 00:42:00 +00:00
|
|
|
description = "A convenient Pythonic interface to Globus REST APIs, including the Transfer API and the Globus Auth API";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/globus/globus-sdk-python";
|
2018-01-20 13:32:04 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ixxie ];
|
|
|
|
};
|
|
|
|
}
|