Skip to content

Commit d056782

Browse files
authored
python3Packages.globus-sdk: fix test (#354988)
2 parents 1ce8fcb + 57fa239 commit d056782

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

pkgs/development/python-modules/globus-sdk/default.nix

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ buildPythonPackage rec {
2929

3030
build-system = [ setuptools ];
3131

32+
preCheck = ''
33+
export HOME=$(mktemp -d)
34+
'';
35+
3236
dependencies = [
3337
cryptography
3438
requests
@@ -44,10 +48,11 @@ buildPythonPackage rec {
4448

4549
pythonImportsCheck = [ "globus_sdk" ];
4650

47-
meta = with lib; {
51+
meta = {
4852
description = "Interface to Globus REST APIs, including the Transfer API and the Globus Auth API";
4953
homepage = "https://github.com/globus/globus-sdk-python";
5054
changelog = "https://github.com/globus/globus-sdk-python/releases/tag/${version}";
51-
license = licenses.asl20;
55+
license = lib.licenses.asl20;
56+
maintainers = with lib.maintainers; [ bot-wxt1221 ];
5257
};
5358
}

0 commit comments

Comments
 (0)