Skip to content

Commit

Permalink
localstack: init at 1.0.4
Browse files Browse the repository at this point in the history
closes #50445
  • Loading branch information
jonringer committed Sep 13, 2022
1 parent abcfb39 commit 0dde2e2
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
69 changes: 69 additions & 0 deletions pkgs/development/python-modules/localstack/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, apispec
, boto3
, cachetools
, click
, localstack-client
, localstack-ext
, plux
, psutil
, python-dotenv
, pyyaml
, requests
, rich
, semver
, tailer
}:

buildPythonPackage rec {
pname = "localstack";
version = "1.0.4";

src = fetchFromGitHub {
owner = "localstack";
repo = "localstack";
rev = "v${version}";
sha256 = "sha256-JDF3wM5AVhfkAFlxmy1f3aMxs4J5LWd0JOY8MzRAzT4=";
};

postPatch = ''
substituteInPlace setup.cfg \
--replace "requests>=2.20.0,<2.26" "requests~=2.20" \
--replace "cachetools~=5.0.0" "cachetools~=5.0"
'';

propagatedBuildInputs = [
apispec
boto3
cachetools
click
localstack-client
localstack-ext
plux
psutil
python-dotenv
pyyaml
requests
rich
semver
tailer
];

pythonImportsCheck = [ "localstack" ];

# Test suite requires boto, which has been removed from nixpkgs
# Just do minimal test, buildPythonPackage maps checkPhase
# to installCheckPhase, so we can test that entrypoint point works.
checkPhase = ''
$out/bin/localstack --version
'';

meta = with lib; {
description = "A fully functional local Cloud stack";
homepage = "https://github.com/localstack/localstack";
license = licenses.asl20;
maintainers = with maintainers; [ jonringer ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8677,6 +8677,8 @@ with pkgs;

lmp = callPackage ../tools/security/lmp { };

localstack = with python3Packages; toPythonApplication localstack;

localtime = callPackage ../tools/system/localtime { };

log4j-detect = callPackage ../tools/security/log4j-detect { };
Expand Down
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5333,6 +5333,8 @@ in {

localimport = callPackage ../development/python-modules/localimport { };

localstack = callPackage ../development/python-modules/localstack { };

localstack-client = callPackage ../development/python-modules/localstack-client { };

localstack-ext = callPackage ../development/python-modules/localstack-ext { };
Expand Down

0 comments on commit 0dde2e2

Please sign in to comment.