Skip to content

Commit 814f9ca

Browse files
committed
python3Packages.localstack-client: 1.38 -> 2.7
Switch to pypi so we can at least auto update properly
1 parent aa06c67 commit 814f9ca

File tree

1 file changed

+7
-9
lines changed
  • pkgs/development/python-modules/localstack-client

1 file changed

+7
-9
lines changed

pkgs/development/python-modules/localstack-client/default.nix

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
{
22
lib,
33
buildPythonPackage,
4-
fetchFromGitHub,
4+
fetchPypi,
55
boto3,
66
pytestCheckHook,
77

8-
# use for promoted localstack
8+
# use for testing promoted localstack
99
pkgs,
1010
}:
1111

1212
buildPythonPackage rec {
1313
pname = "localstack-client";
14-
version = "1.39";
14+
version = "2.7";
1515
format = "setuptools";
1616

17-
src = fetchFromGitHub {
18-
owner = "localstack";
19-
repo = "localstack-python-client";
20-
# Request for proper tags: https://github.com/localstack/localstack-python-client/issues/38
21-
rev = "f1e538ad23700e5b1afe98720404f4801475e470";
22-
hash = "sha256-MBXTiTzCwkduJPPRN7OKaWy2q9J8xCX/GGu09tyac3A=";
17+
src = fetchPypi {
18+
pname = "localstack_client";
19+
inherit version;
20+
hash = "sha256-FJkxGZAaS8vvfDLYmbJPSliodaZ2VpPt8QZNZrimhAg=";
2321
};
2422

2523
propagatedBuildInputs = [ boto3 ];

0 commit comments

Comments
 (0)